pax_global_header00006660000000000000000000000064142317524160014517gustar00rootroot0000000000000052 comment=17b90605391fa6f8104a05417716504b9c8b81b4 gav-0.9.1/000077500000000000000000000000001423175241600123035ustar00rootroot00000000000000gav-0.9.1/Ball.cpp000066400000000000000000000242161423175241600136660ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "Ball.h" #define PI 3.14158 #define GRAVITY 250 #define MAX_TOUCHES 3 #define MIN(a,b) ((ab)?a:b) using namespace std; bool Ball::approaching(int spdx, float spdy) { int sgnx = (spdx>0)?1:(spdx<0)?-1:0; int sgny = (spdy>0)?1:(spdy<0)?-1:0; if ( ((spdx - _spdx) * sgnx) >= 0 ) return(true); if ( ((spdy - _spdy) * sgny) >= 0 ) return(true); return(false); } // evaluates a collision ("sprite"-wise) bool Ball::spriteCollide(Player *p) { SDL_Rect r; r.x = _x; r.y = _y; return(p->collidesWith(_frames, _frameIdx, &r)); } // evaluate a collision bool Ball::collide(Player *p) { return( approaching(p->speedX(), - p->speedY()) && spriteCollide(p) ); } void Ball::update_internal(Player * pl) { int cplx = pl->x() + pl->width() / 2; int cply = pl->y() + pl->height() / 2; int cbx = _x + _frames->width() / 2; int cby = _y + _frames->height() / 2; int dx = (cplx - cbx); int dy = (cply - cby); float beta = dx?atan((float) dy/ (float) dx):(PI/2); float sinb = sin(-beta); float cosb = cos(-beta); float x1, y1; /* service patch */ if (!_spdy && !_spdx) { _spdy = -200; //_spdx = (_x > configuration.NET_X)?-100:100; } y1 = _spdx * sinb + (- _spdy) * cosb; x1 = configuration.ballAmplify * (pl->speedX() * cosb - pl->speedY() * sinb); int oldspdy = _spdy; _spdx = (int) (x1 * cos(beta) - y1 * sin(beta)); _spdy = (int) (- (x1 * sin(beta) + y1 * cos(beta))); if ( (pl->speedX() - _spdx) * dx < 0) _spdx = pl->speedX(); if ( (pl->speedY() - _spdy) * dy > 0) _spdy = (int) pl->speedY(); #define MIN_POS_SPD 100 if ( (_spdy < MIN_POS_SPD) && (cby < cply) ) _spdy = (int) ((1.1 * ELASTIC_SMOOTH) * abs(oldspdy)); } void Ball::assignPoint(int side, Team *t) { if ( _side == side ) { t->score(); #ifdef AUDIO soundMgr->playSound(SND_SCORE); #endif // AUDIO } else { #ifdef AUDIO soundMgr->playSound(SND_SERVICECHANGE); #endif // AUDIO } _side = side; _x = (configuration.NET_X) + side * (configuration.SCREEN_WIDTH/4) - _radius; //((configuration.SCREEN_WIDTH * _side) / 4); _y = ((configuration.SCREEN_HEIGHT * 2) / 3) - _radius ; _spdx = _spdy = _accelY = 0; _scorerSide = 0; resetCollisionCount(); } void Ball::resetCollisionCount() { for (map::iterator it = _collisionCount.begin(); it != _collisionCount.end(); it++ ) { it->second = 0; } } void Ball::resetPos(int x, int y) { _side = -1; _scorerSide = 0; _x = x; _y = y; _spdx = _spdy = 0; _accelY = 0; resetCollisionCount(); } void Ball::draw(SDL_Surface *scr) { SDL_Rect rect; rect.x = _x; rect.y = _y; _frames->blit(_frameIdx, scr, &rect); } float Ball::distance(int x, int y) { int bx = _x + _frames->width()/2; // center of the ball int by = _y + _frames->height()/2; return(sqrt((double) (x - bx)*(x - bx) + (y - by) * (y - by))); } bool Ball::netPartialCollision(int x, int y) { int xmin, xmax, ymin, ymax; xmin = MIN(x, _oldx); xmax = MAX(x, _oldx); ymin = MIN(y, _oldy); ymax = MAX(y, _oldy); if ((xmin < configuration.NET_X) && (xmax > configuration.NET_X)) { int collisionY = (configuration.NET_X - xmin) * (ymax - ymin)/(xmax - xmin) + ymin; if ( (collisionY < configuration.NET_Y ) && (collisionY > configuration.NET_Y - _frames->height()/2) ) return true; } return((x + _frames->width() > configuration.NET_X) && (x < configuration.NET_X) && ( distance(configuration.NET_X, configuration.NET_Y) < (_frames->width()/2)) ); /* (y + _frames->height()/2 < configuration.NET_Y) && (y + _frames->height() > configuration.NET_Y)); */ } bool Ball::netFullCollision(int x, int y) { int xmin, xmax, ymin, ymax; xmin = MIN(x, _oldx); xmax = MAX(x, _oldx); ymin = MIN(y, _oldy); ymax = MAX(y, _oldy); if ((xmin < configuration.NET_X) && (xmax > configuration.NET_X)) { int collisionY = (configuration.NET_X - xmin) * (ymax - ymin)/(xmax - xmin) + ymin; if ( collisionY > configuration.NET_Y ) return true; } return((x + _frames->width() > configuration.NET_X) && (x < configuration.NET_X) && (y + _frames->height()/2 >= configuration.NET_Y)); } void Ball::updateFrame(int passed) { static int overallPassed = 0; overallPassed += passed; if (overallPassed > (configuration.ballFrameConf.ballPeriod/ configuration.ballFrameConf.nBallFrames)) { overallPassed = 0; _frameIdx = (_frameIdx + 1) % configuration.ballFrameConf.nBallFrames; } } // updates the ball position, knowing 'passed' milliseconds went // away void Ball::update(int passed, Team *tleft, Team *tright) { int dx, dy; updateFrame(passed); _oldx = _x; _oldy = _y; if ( _scorerSide ) { _scoredTime += passed; if ( _scoredTime > 650 ) { assignPoint(_scorerSide, (_scorerSide<0)?tleft:tright); return; } } if ( !netPartialCollision(_x, _y) ) // if it's not network supported update_direction(passed); dx = (int) (_spdx * ((float) passed / 1000.0)); dy = (int) (_spdy * ((float) passed / 1000.0)); _x += dx; _y -= dy; // usual problem with y //ball hits upper wall if ( _y < configuration.CEILING ) { _y = configuration.CEILING; _spdy = - (int) (_spdy * ELASTIC_SMOOTH); #ifdef AUDIO soundMgr->playSound(SND_BOUNCE); #endif // AUDIO } //ball hits left wall if ( _x < configuration.LEFT_WALL ) { _x = configuration.LEFT_WALL; _spdx = - (int) (_spdx * ELASTIC_SMOOTH); if ( _collisionCount[tright] ) resetCollisionCount(); #ifdef AUDIO soundMgr->playSound(SND_BOUNCE); #endif // AUDIO } //ball hits right wall if ( _x > (configuration.RIGHT_WALL -_frames->width()) ) { _x = configuration.RIGHT_WALL - _frames->width(); _spdx = - (int) (_spdx * ELASTIC_SMOOTH); if ( _collisionCount[tleft] ) resetCollisionCount(); #ifdef AUDIO soundMgr->playSound(SND_BOUNCE); #endif // AUDIO } // net collision if ( netFullCollision(_x, _y) && !netFullCollision(_oldx, _oldy)) { _spdx = (int) ((- _spdx) * ELASTIC_SMOOTH); if ( _oldx > _x ) _x = 2 * configuration.NET_X - _x; // moves ball out of the net // by the right amount else _x = 2* configuration.NET_X - 2*_frames->width() - _x; #ifdef AUDIO soundMgr->playSound(SND_FULLNET); #endif // AUDIO } else if ( netPartialCollision(_x, _y) ) { if ( !netPartialCollision(_oldx, configuration.NET_Y - 3*_frames->height()/4) ) { if ( _oldy < _y ) { // hits from the top if ( (_x + _frames->width()/8 < configuration.NET_X) && (_x + 7*_frames->width()/8 > configuration.NET_X) ) _spdx = - _spdx; } _spdx = (int) (_spdx * ELASTIC_SMOOTH * ELASTIC_SMOOTH * ELASTIC_SMOOTH); } _y -= _frames->height()/4; //(int) (_frames->height() - //(4*distance(configuration.NET_X, configuration.NET_Y) / _frames->height())); _spdy = (int) fabs(_spdy * ELASTIC_SMOOTH * ELASTIC_SMOOTH); // ball stuck on the net "feature" ;-) if (_x == _oldx) { if (_spdx > 0) _x += 5; else _x -= 5; } #ifdef AUDIO soundMgr->playSound(SND_PARTIALNET); #endif // AUDIO } //ball hits floor if ( _y > (configuration.FLOOR_ORD - _frames->height() ) ) { _y = (configuration.FLOOR_ORD - _frames->height() ); _spdy = - (int) (_spdy * ELASTIC_SMOOTH); if ( !_scorerSide ) { // oldx, so we're safe from collisions against // the net _scorerSide = (_oldx < configuration.NET_X)?1:-1; _scoredTime = 0; } #ifdef AUDIO soundMgr->playSound(SND_BOUNCE); #endif // AUDIO } // collisions with the players for ( int teami = 0; !_scorerSide && (teami < 2); teami ++ ) { Team *team = (teami?tright:tleft); vector plv = team->players(); for ( vector::const_iterator it = plv.begin(); it != plv.end(); it++ ) { // cout << "xy" << (*it)->x() << " " << (*it)->y() << endl; if ( collide(*it) ) { if ( _inCollisionWith != *it ) { _inCollisionWith = *it; // cerr << "collide " << passed << "\n"; if ( !_collisionCount[team] ) resetCollisionCount(); _collisionCount[team]++; #ifdef AUDIO soundMgr->playSound(SND_PLAYERHIT); #endif // AUDIO if ( _collisionCount[team] > MAX_TOUCHES ) { _scorerSide = (team == tleft)?1:-1; _scoredTime = 0; } // cerr << "CollisionCount " << string(teami?"R: ":"L: ") << //_collisionCount[team] << endl; update_internal(*it); while (collide(*it)) { int newx = _x + ((_spdx>0)?1:-1); _y -= (_spdy>0)?1:-1; // usual problem with y if (!netFullCollision(newx, _y) && !netPartialCollision(newx, _y)) _x = newx; } //_inCollisionWith = NULL; } else { while (collide(*it)) { int newx = _x + ((_spdx>0)?1:-1); _y -= (_spdy>0)?1:-1; // usual problem with y if (!netFullCollision(newx, _y) && !netPartialCollision(newx, _y)) _x = newx; } } } else if ( _inCollisionWith == *it ) _inCollisionWith = NULL; } } // to activate 'gravity' if ( !_accelY && (abs(_spdx) + abs(_spdy)) ) _accelY = GRAVITY; /* // over net test if (!_spdx && !_spdy) { _x = configuration.NET_X; _y = configuration.NET_Y - 30; _spdy = 5; } */ /* // stuck test { static int ini = 1; if (ini && !_spdx && !_spdy) { ini = 0; _x = configuration.NET_X - 20; _y = configuration.NET_Y - 50; _spdy = 5; } } */ } gav-0.9.1/Ball.h000066400000000000000000000071721423175241600133350ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _BALL_H_ #define _BALL_H_ #include #include #include #include "FrameSeq.h" #include "Team.h" #include "globals.h" #include "Theme.h" #define ELASTIC_SMOOTH (0.8) #define MIN_NET_SPEED (10) //#define NET_X (312) //#define NET_X (configuration.SCREEN_WIDTH / 2 - 8) //#define NET_Y (configuration.SCREEN_HEIGHT /2 + ((3*configuration.SCREEN_HEIGHT)/200)) //#define CEILING_Y 24 //#define LEFT_WALL 7 //#define RIGHT_WALL(bw) (configuration.SCREEN_WIDTH - bw - 16) typedef enum { BALL_ORIG } ball_t; class Ball { private: FrameSeq * _frames; int _speed; float _angle; int _spdx, _spdy; int _x, _y; int _oldx, _oldy; int _frameIdx; int _radius; int _beginning; int _accelY; int _side; int _scorerSide; int _scoredTime; std::map _collisionCount; Player * _inCollisionWith; void loadFrameSeq(ball_t t) { switch (t) { case BALL_ORIG: _frames = new LogicalFrameSeq(CurrentTheme->ball(), configuration.ballFrameConf.nBallFrames); break; } } void assignPoint(int side, Team *t); bool approaching(int spdx, float spdy); // evaluates a collision ("sprite"-wise) bool spriteCollide(Player *p); // evaluate a collision bool collide(Player *p); void update_internal(Player * pl); // void assignPoint(int side, Team *t); bool netPartialCollision(int, int); bool netFullCollision(int, int); inline void update_direction(int ticks) { _spdy -= (_accelY * ticks / 1000); } void resetCollisionCount(); public: Ball(ball_t t, int x = -1, int y = -1) : _x(x), _y(y), _frameIdx(0) { _spdy = 0; _spdx = 0; loadFrameSeq(t); _radius = _frames->width() / 2; //cerr << "radius: " << _radius << endl; _beginning = 0; _accelY = 0; // as soon as the speed becomes <> 0, it becomes 500 _inCollisionWith = NULL; _side = -1; if ( _x < 0 ) _x = (configuration.SCREEN_WIDTH / 2) + ((configuration.SCREEN_WIDTH * _side) / 4) ; if ( _y < 0 ) _y = (configuration.SCREEN_HEIGHT * 2) / 3; _scorerSide = _scoredTime = 0; } void resetPos(int x, int y); inline int speed() { return _speed; } inline void speed(int v) { _speed = v; } inline int x() { return _x; } inline int y() { return _y; } inline int radius() { return _radius; } inline float angle() { return _angle; } inline void angle(float v) { _angle = v; } inline int spdx() { return _spdx; } inline int spdy() { return _spdy; } inline int frame() { return _frameIdx; } inline void setX(int x) { _x = x; } inline void setY(int y) { _y = y; } inline int gravity() { return _accelY; } void updateFrame(int passed); void update(int passed, Team *tleft, Team *tright); float distance(int, int); void draw(SDL_Surface *scr = screen); ~Ball() { delete(_frames); } }; #endif // _BALL_H_ gav-0.9.1/CHANGELOG000066400000000000000000000036221423175241600135200ustar00rootroot00000000000000Version 0.9.1 changes: - fixed imports - fixed menu item label centering Version 0.9.0 changes: - successfully compiled on Mac OS X, files for build added - preferences are stored to $HOME/.gav if $HOME exists, to ./gav.ini otherwise. - size of the window can be set by the -w and -h commandline parameters - joystick support - a couple of leaks removed from the code - now network game with different themes works correctly - network connection phase no longer blocking - the network protocol has changed! no longer compatible with old versions Version 0.8.0 changes: - (we hope) *FINAL* patch for stuck on the net problem - patch for ball passing over the net bug - collision mechanisms improved - sound support added (sounds can be found in theme packages) - Players classes hierarchy re-designed - AI Player improved - added default service change and scoring sounds. Version 0.7.3 added: - patch for stuck on the net problem - advanced themes configuration support (check the naive theme for an example) Version 0.7.2 added: - char specified as signed (for other architectures than x86) - ball speed selectable Version 0.7.1 added: - lots of bugs fixed (collisions, etc.) - AI improved in multiplayer mode Version 0.7.0 added: - Networking game, in client/server mode - modified collisions - several themes provided by friendly users - selectable "larger" background - adjustable frame rate and frame skip values - configurable end score - vintage monitor effect (works ok only with the default theme) Version 0.6.0 added: - Theme support via the 'Extra' menu entry Only a silly modification of the classic theme is available so far, if you are interested in developing more, please do, and let us know! - Keys redefinition works - You can now activate menu items using the enter key (wow!) - You can play more than one-a-side. Cooperative games are supported. - Fullscreen can now be triggered via a menu entry gav-0.9.1/CommonHeader000066400000000000000000000022711423175241600145710ustar00rootroot00000000000000# GAV - Gpl Arcade Volleyball # Copyright (C) 2002 # GAV team (http://sourceforge.net/projects/gav/) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. CWD = $(shell pwd) GAV_ROOT = $(CWD:%/$(RELPATH)=%) #comment the following line if you do not want network support NET = true LD = ld CXX = g++ CXXFLAGS= `sdl-config --cflags` -g -Wall -DAUDIO ifndef NET CXXFLAGS+= -DNONET endif ifdef NET LDFLAGS= `sdl-config --libs` -lSDL_image -lSDL_net -lm else LDFLAGS= `sdl-config --libs` -lSDL_image -lm endif SRCS = $(wildcard *.cpp) OFILES = $(SRCS:%.cpp=%.o) gav-0.9.1/Configuration.cpp000066400000000000000000000176311423175241600156260ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Configuration options */ #include #include #include #include "Configuration.h" #include "ControlsArray.h" using namespace std; Configuration configuration; Aargh aargh; int Configuration::loadConfiguration() { string fname = confFileName(); if ( !aargh.loadConf(fname.c_str()) ) return(-1); string value; if ( aargh.getArg("left_nplayers", value) ) configuration.left_nplayers = atoi(value.c_str()); if ( aargh.getArg("right_nplayers", value) ) configuration.right_nplayers = atoi(value.c_str()); if ( aargh.getArg("monitor_type", value) ) { if ( value == "normal" ) configuration.monitor_type = MONITOR_NORMAL; else if ( value == "old" ) configuration.monitor_type = MONITOR_OLD; else if ( value == "very_old") configuration.monitor_type = MONITOR_VERYOLD; else if ( value == "very_very_old") configuration.monitor_type = MONITOR_VERYVERYOLD; else cerr << "Unrecognized monitor type \"" << value << "\"\n"; } if ( aargh.getArg("frame_skip", value) ) configuration.frame_skip = atoi(value.c_str()); if ( aargh.getArg("fps", value) ) configuration.setFps(atoi(value.c_str())); for ( int i = 0; i < left_nplayers; i++ ) if ( aargh.getArg(("left_player" + toString(i)), value) ) if ( value == "human") configuration.left_players[i] = PLAYER_HUMAN; else if ( value == "computer") configuration.left_players[i] = PLAYER_COMPUTER; else cerr << "Unrecognized player type \"" << value << "\"\n"; for ( int i = 0; i < MAX_PLAYERS/2; i++ ) { string arg1, arg2, arg3; arg1 = "left_player" + toString(i) + "left"; arg2 = "left_player" + toString(i) + "right"; arg3 = "left_player" + toString(i) + "jump"; if ( aargh.getArg(arg1) && aargh.getArg(arg2) && aargh.getArg(arg3) ) { string lval, rval, jval; controls_t ctrls; aargh.getArg(arg1, lval); aargh.getArg(arg2, rval); aargh.getArg(arg3, jval); ctrls.left_key = atoi(lval.c_str()); ctrls.right_key = atoi(rval.c_str()); ctrls.jump_key = atoi(jval.c_str()); controlsArray->setControls(i*2, ctrls); } } for ( int i = 0; i < right_nplayers; i++ ) if ( aargh.getArg(("right_player" + toString(i)), value) ) if ( value == "human" ) configuration.right_players[i] = PLAYER_HUMAN; else if ( value == "computer") configuration.right_players[i] = PLAYER_COMPUTER; else cerr << "Unrecognized player type \"" << value << "\"\n"; for ( int i = 0; i < MAX_PLAYERS/2; i++ ) { string arg1, arg2, arg3; arg1 = "right_player" + toString(i) + "left"; arg2 = "right_player" + toString(i) + "right"; arg3 = "right_player" + toString(i) + "jump"; if ( aargh.getArg(arg1) && aargh.getArg(arg2) && aargh.getArg(arg3) ) { string lval, rval, jval; controls_t ctrls; aargh.getArg(arg1, lval); aargh.getArg(arg2, rval); aargh.getArg(arg3, jval); ctrls.left_key = atoi(lval.c_str()); ctrls.right_key = atoi(rval.c_str()); ctrls.jump_key = atoi(jval.c_str()); controlsArray->setControls(i*2 + 1, ctrls); } } if ( aargh.getArg("big_background", value) ) configuration.bgBig = (value=="yes"); if ( aargh.getArg("fullscreen", value) ) configuration.fullscreen = (value=="yes"); if ( aargh.getArg("ball_speed", value) ) if ( value == "normal" ) configuration.ballAmplify = DEFAULT_BALL_AMPLIFY; else if ( value == "fast" ) configuration.ballAmplify = DEFAULT_BALL_AMPLIFY + BALL_SPEED_INC; else if ( value == "very_fast" ) configuration.ballAmplify = DEFAULT_BALL_AMPLIFY + 2*BALL_SPEED_INC; else cerr << "Unrecognized ball speed \"" << value << "\"\n"; if ( aargh.getArg("theme", value) ) configuration.currentTheme = value; if ( aargh.getArg("sound", value) ) configuration.sound = (value == "yes"); if ( aargh.getArg("winning_score", value) ) configuration.winning_score = atoi(value.c_str()); return 0; } /* we'll use aargh's dump feature! Yiipeee!! */ int Configuration::saveConfiguration(string fname) { // cerr << "saving to: " << fname << endl; string tosave; aargh.dump(tosave); FILE *fp; if ( (fp = fopen(fname.c_str(), "w")) == NULL ) return(-1); fputs(tosave.c_str(), fp); fclose(fp); return 0; } /* unfortunately, I *HAVE* to go through all the settings... This function puts configuration parameters inside aargh, and then dumps it. */ int Configuration::createConfigurationFile() { string fname = confFileName(); Configuration c = configuration; /* for short :) */ aargh.reset(); aargh.setArg("left_nplayers", c.left_nplayers); aargh.setArg("right_nplayers", c.right_nplayers); switch ( c.monitor_type ) { case MONITOR_NORMAL: aargh.setArg("monitor_type", "normal"); break; case MONITOR_OLD: aargh.setArg("monitor_type", "old"); break; case MONITOR_VERYOLD: aargh.setArg("monitor_type", "very_old"); break; case MONITOR_VERYVERYOLD: aargh.setArg("monitor_type", "very_very_old"); break; } aargh.setArg("frame_skip", c.frame_skip); aargh.setArg("fps", c.fps); for ( int i = 0; i < left_nplayers; i++ ) { switch ( c.left_players[i] ) { case PLAYER_HUMAN: aargh.setArg("left_player" + toString(i), "human"); break; case PLAYER_COMPUTER: aargh.setArg("left_player" + toString(i), "computer"); break; } } for ( int i = 0; i < right_nplayers; i++ ) { switch ( c.right_players[i] ) { case PLAYER_HUMAN: aargh.setArg("right_player" + toString(i), "human"); break; case PLAYER_COMPUTER: aargh.setArg("right_player" + toString(i), "computer"); break; } } aargh.setArg("big_background", c.bgBig?"yes":"no"); aargh.setArg("fullscreen", (c.fullscreen?"yes":"no")); if ( c.ballAmplify == DEFAULT_BALL_AMPLIFY + BALL_SPEED_INC ) aargh.setArg("ball_speed", "fast"); else if ( c.ballAmplify == DEFAULT_BALL_AMPLIFY + 2*BALL_SPEED_INC ) aargh.setArg("ball_speed", "very_fast"); else if ( c.ballAmplify == DEFAULT_BALL_AMPLIFY ) aargh.setArg("ball_speed", "normal"); aargh.setArg("theme", c.currentTheme); aargh.setArg("sound", c.sound?"yes":"no"); aargh.setArg("winning_score", c.winning_score); for ( int i = 0; i < MAX_PLAYERS/2; i++ ) { controls_t ct = controlsArray->getControls(i*2); aargh.setArg("left_player" + toString(i) + "left", ct.left_key); aargh.setArg("left_player" + toString(i) + "right", ct.right_key); aargh.setArg("left_player" + toString(i) + "jump", ct.jump_key); } for ( int i = 0; i < MAX_PLAYERS/2; i++ ) { controls_t ct = controlsArray->getControls(i*2 + 1); aargh.setArg("right_player" + toString(i) + "left", ct.left_key); aargh.setArg("right_player" + toString(i) + "right", ct.right_key); aargh.setArg("right_player" + toString(i) + "jump", ct.jump_key); } return(saveConfiguration(fname)); } string Configuration::confFileName() { string ret; const char *home = getenv("HOME"); if ( home ) { ret = (string(home) + "/" + DEFAULT_CONF_FILENAME); } else { /* gav.ini in the current directory */ ret = string(ALTERNATIVE_CONF_FILENAME); } return ret; } gav-0.9.1/Configuration.h000066400000000000000000000150151423175241600152650ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Configuration options */ #include #include #include "aarg.h" #ifndef __CONFIGURATION_H__ #define __CONFIGURATION_H__ #define MAX_PLAYERS (4) #define DEFAULT_FPS (50) #define DEFAULT_WINNING_SCORE (15) #define DEFAULT_BALL_AMPLIFY 5 #define DEFAULT_FRAME_SKIP 0 #define DEFAULT_THEME "classic" #define DEFAULT_FULLSCREEN false #define DEFAULT_SOUND true #define DEFAULT_NPLAYERFRAMES 4 #define DEFAULT_PLAYERSTILLB 1 #define DEFAULT_PLAYERSTILLE 1 #define DEFAULT_PLAYERSTILLP 0 #define DEFAULT_PLAYERRUNB 2 #define DEFAULT_PLAYERRUNE 3 #define DEFAULT_PLAYERRUNP 250 #define DEFAULT_PLAYERJMPB 4 #define DEFAULT_PLAYERJMPE 4 #define DEFAULT_PLAYERJMPP 0 #define DEFAULT_NBALLFRAMES 4 #define DEFAULT_BALLPERIOD 1000 #define BALL_SPEED_INC 3 #define DEFAULT_CONF_FILENAME ".gav" #define ALTERNATIVE_CONF_FILENAME "gav.ini" #define ENVIRONMENT_WIDTH (640) #define ENVIRONMENT_HEIGHT (400) #define BIG_ENVIRONMENT_WIDTH (1000) #define BIG_ENVIRONMENT_HEIGHT (400) enum { PLAYER_NONE, PLAYER_HUMAN, PLAYER_COMPUTER}; enum { MONITOR_NORMAL, MONITOR_OLD, MONITOR_VERYOLD, MONITOR_VERYVERYOLD}; typedef struct PlayerFrameConf_s { unsigned short nPlayerFrames; unsigned short playerStillB; unsigned short playerStillE; unsigned short playerStillP; unsigned short playerRunB; unsigned short playerRunE; unsigned short playerRunP; unsigned short playerJmpB; unsigned short playerJmpE; unsigned short playerJmpP; } PlayerFrameConf_t; typedef struct BallFrameConf_s { unsigned short nBallFrames; unsigned short ballPeriod; } BallFrameConf_t; typedef struct Resolution_s { unsigned short x; unsigned short y; float ratioX; float ratioY; } Resolution_t; typedef struct Environment_s { unsigned short w; unsigned short h; } Environment_t; class Configuration { public: int left_nplayers; int right_nplayers; int left_players[MAX_PLAYERS/2]; int right_players[MAX_PLAYERS/2]; PlayerFrameConf_t playerFrameConf; BallFrameConf_t ballFrameConf; Resolution_t resolution; Resolution_t desiredResolution; Environment_t env; std::string currentTheme; /* Constants that depend on the screen size */ int SCREEN_WIDTH; int SCREEN_HEIGHT; float SPEEDY; int FLOOR_ORD; int SPEED_MULTIPLIER; int NET_X; int NET_Y; int CEILING; int LEFT_WALL; int RIGHT_WALL; int DEFAULT_SPEED; /* To add: something meaningful to record the controls... */ bool sound; int winning_score; int monitor_type; unsigned int frame_skip; // one every frame_skip + 1 are actually drawn unsigned int fps; // fps of the update (not graphical) unsigned int mill_per_frame; // caches the # of msecs per frame (1000/fps) bool bgBig; // if the background is big bool fullscreen; unsigned int ballAmplify; Configuration() : left_nplayers(1), right_nplayers(1), sound(DEFAULT_SOUND), winning_score(DEFAULT_WINNING_SCORE) { monitor_type = MONITOR_NORMAL; frame_skip = DEFAULT_FRAME_SKIP; fps = DEFAULT_FPS; mill_per_frame = 1000 / fps; left_players[0] = PLAYER_HUMAN; right_players[0] = PLAYER_COMPUTER; for ( int i = 1; i < MAX_PLAYERS/2; i++ ) { left_players[i] = PLAYER_NONE; right_players[i] = PLAYER_NONE; } bgBig = false; fullscreen = DEFAULT_FULLSCREEN; ballAmplify = DEFAULT_BALL_AMPLIFY; setDefaultFrameConf(); currentTheme = "classic"; scaleFactors(ENVIRONMENT_WIDTH, ENVIRONMENT_HEIGHT); env.w = ENVIRONMENT_WIDTH; env.h = ENVIRONMENT_HEIGHT; setDesiredResolution(ENVIRONMENT_WIDTH, ENVIRONMENT_HEIGHT); setResolution(ENVIRONMENT_WIDTH, ENVIRONMENT_HEIGHT); } void scaleFactors(int width, int height) { SCREEN_WIDTH = width; SCREEN_HEIGHT = height; SPEEDY = ((float) SCREEN_HEIGHT / 2.5); FLOOR_ORD = SCREEN_HEIGHT -(SCREEN_HEIGHT / 200); NET_X = width / 2 - width / 80; NET_Y = height / 2 + ( 3*height / 200 ); CEILING = (int) (height / 17); LEFT_WALL = (int) (width / 80); RIGHT_WALL = (int) (width - width / 40); DEFAULT_SPEED = (int) (bgBig)?(width/4):(25*width/64); } inline void setResolution(int w, int h) { resolution.x = w; resolution.y = h; resolution.ratioX = (float) resolution.x / (float) env.w; resolution.ratioY = (float) resolution.y / (float) env.h; } inline void setResolutionToDesired() { setResolution(desiredResolution.x, desiredResolution.y); } inline void setDesiredResolution(int w, int h) { desiredResolution.x = w; desiredResolution.y = h; desiredResolution.ratioX = (float) desiredResolution.x / (float) env.w; desiredResolution.ratioY = (float) desiredResolution.y / (float) env.h; } inline void setDefaultFrameConf() { playerFrameConf.nPlayerFrames = DEFAULT_NPLAYERFRAMES; playerFrameConf.playerStillB = DEFAULT_PLAYERSTILLB; playerFrameConf.playerStillE = DEFAULT_PLAYERSTILLE; playerFrameConf.playerStillP = DEFAULT_PLAYERSTILLP; playerFrameConf.playerRunB = DEFAULT_PLAYERRUNB; playerFrameConf.playerRunE = DEFAULT_PLAYERRUNE; playerFrameConf.playerRunP = DEFAULT_PLAYERRUNP; playerFrameConf.playerJmpB = DEFAULT_PLAYERJMPB; playerFrameConf.playerJmpE = DEFAULT_PLAYERJMPE; playerFrameConf.playerJmpP = DEFAULT_PLAYERJMPP; ballFrameConf.nBallFrames = DEFAULT_NBALLFRAMES; ballFrameConf.ballPeriod = DEFAULT_BALLPERIOD; } inline void setFps(int val) { fps = val; mill_per_frame = 1000 / val; } std::string toString(int v) { std::ostringstream os; os << v; return os.str(); } int loadConfiguration(); int saveConfiguration(std::string fname); int createConfigurationFile(); std::string confFileName(); //void scaleFactors(int width, int height); }; #endif gav-0.9.1/ControlsArray.cpp000066400000000000000000000056121423175241600156150ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include "InputState.h" #include "ControlsArray.h" #include "vector" #include "Player.h" #include "Team.h" #include "PlayerAI.h" #ifndef NONET #include "NetServer.h" #endif #define JOY_THRESHOLD (10000) void ControlsArray::initializeControls() { _keyMapping[0].left_key = SDLK_z; _keyMapping[0].right_key = SDLK_c; _keyMapping[0].jump_key = SDLK_LSHIFT; _keyMapping[1].left_key = SDLK_LEFT; _keyMapping[1].right_key = SDLK_RIGHT; _keyMapping[1].jump_key = SDLK_UP; _keyMapping[2].left_key = SDLK_h; _keyMapping[2].right_key = SDLK_k; _keyMapping[2].jump_key = SDLK_u; _keyMapping[3].left_key = SDLK_s; _keyMapping[3].right_key = SDLK_f; _keyMapping[3].jump_key = SDLK_e; // _joyMapping[0] = SDL_JoystickOpen(0); } void ControlsArray::setControlsState(InputState *is, Team * tl, Team * tr) { Uint8 *keystate = is->getKeyState(); int i = 0; std::vector players; SDL_JoystickUpdate(); #ifndef NONET int player; char cmd; if (nets) while ( nets->ReceiveCommand(&player, &cmd) != -1 ) { _inputs[player].left = cmd & CNTRL_LEFT; _inputs[player].right = cmd & CNTRL_RIGHT; _inputs[player].jump = cmd & CNTRL_JUMP; } #endif players = tl->players(); for (i = 0; i < 2; i++) { for ( std::vector::const_iterator it = players.begin(); it != players.end(); it++ ) { if ( (*it)->getCtrl() == PL_CTRL_HUMAN ) { int plId = (*it)->id(); /* first check the keyboard */ _inputs[plId].left = keystate[_keyMapping[plId].left_key]; _inputs[plId].right = keystate[_keyMapping[plId].right_key]; _inputs[plId].jump = keystate[_keyMapping[plId].jump_key]; /* then check the joystick */ SDL_Joystick *js = _joyMapping[plId]; if ( js ) { _inputs[plId].left |= (SDL_JoystickGetAxis(js, 0) < -JOY_THRESHOLD); _inputs[plId].right |= (SDL_JoystickGetAxis(js, 0) > JOY_THRESHOLD); _inputs[plId].jump |= SDL_JoystickGetButton(js, 0); } } else if ( (*it)->getCtrl() == PL_CTRL_AI ) { _inputs[(*it)->id()] = ((PlayerAI *) (*it))->planAction(); } } players = tr->players(); } } gav-0.9.1/ControlsArray.h000066400000000000000000000051251423175241600152610ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __CONTROLSARRAY_H__ #define __CONTROLSARRAY_H__ #include #include "InputState.h" #include "globals.h" class Team; typedef struct { int left_key; int right_key; int jump_key; } controls_t; #define MAX_JOYS (4) typedef enum { CNTRL_LEFT = 1, CNTRL_RIGHT = 2, CNTRL_JUMP = 4} cntrl_t; class ControlsArray { triple_t _inputs[MAX_PLAYERS]; controls_t _keyMapping[MAX_PLAYERS]; /* vector from playerId to SDL_Joystick * */ SDL_Joystick *_joyMapping[MAX_PLAYERS]; Uint8 _f[12]; int _nJoys; SDL_Joystick *_joys[MAX_JOYS]; public: ControlsArray() { memset(_inputs, 0, MAX_PLAYERS * sizeof(triple_t)); memset(_f, 0, 12); for ( int i = 0; i < MAX_PLAYERS; i++ ) _joyMapping[i] = NULL; _nJoys = SDL_NumJoysticks(); if ( _nJoys > MAX_JOYS) _nJoys = MAX_JOYS; for ( int i = 0; i < _nJoys; i++ ) _joys[i] = SDL_JoystickOpen(i); initializeControls(); } controls_t getControls(int plId) { return _keyMapping[plId]; } void setControls(int plId, controls_t ctrls) { _keyMapping[plId] = ctrls; } int getNJoysticks() { return _nJoys; } void assignJoystick(int plId, int joyId) { if ( joyId == -1 ) _joyMapping[plId] = NULL; else _joyMapping[plId] = _joys[joyId%_nJoys]; } // void addChannel(){} void setControl(int plId, cntrl_t cntrl, int keysym) { controls_t *t = &_keyMapping[plId]; switch ( cntrl ) { case CNTRL_LEFT: t->left_key = keysym; break; case CNTRL_RIGHT: t->right_key = keysym; break; case CNTRL_JUMP: t->jump_key = keysym; break; } } void initializeControls(); void setControlsState(InputState *is, Team * tl, Team * tr); inline triple_t getCommands(int idx) { return _inputs[idx];} }; #endif // __CONROLSARRAY_H__ gav-0.9.1/FrameSeq.cpp000066400000000000000000000064231423175241600145170ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "FrameSeq.h" #define max(x, y) ((x)>(y)?(x):(y)) #define min(x, y) ((x)<(y)?(x):(y)) void FrameSeq::blitRect(int idx, SDL_Surface * dest, SDL_Rect * rect) { SDL_Rect r; r.x = (idx % _nframes) * _width; r.y = 0; r.w = rect->w; r.h = rect->h; SDL_BlitSurface(_surface, &r, dest, rect); } void FrameSeq::blit(int idx, SDL_Surface * dest, SDL_Rect * rect) { SDL_Rect r; r.x = (idx % _nframes) * _width; r.y = 0; r.w = _width; r.h = _surface->h; SDL_BlitSurface(_surface, &r, dest, rect); } Uint32 CreateHicolorPixel(SDL_PixelFormat *fmt, Uint8 red, Uint8 green, Uint8 blue) { return( ((red >> fmt->Rloss) << fmt->Rshift) + ((green >> fmt->Gloss) << fmt->Gshift) + ((blue >> fmt->Bloss) << fmt->Bshift) ); } inline Uint32 getPix(void *v, int i, Uint8 bpp) { switch ( bpp ) { case 4: return (Uint32) ((Uint32 *)v)[i]; break; case 3: std::cerr << "Unsupported pixel format: please, report to the GAV team!\n"; exit(0); break; //(Uint32) ((Uint24 *)v)[i]; break; there's no such thing as Uint24! case 2: return (Uint32) ((Uint16 *)v)[i]; break; case 1: return (Uint32) ((Uint8 *)v)[i]; break; } std::cerr << "Unsupported pixel format (" << bpp << "): please, report to the GAV team!\n"; exit(0); return 0; } bool FrameSeq::collidesWith(FrameSeq *fs, int idx1, int idx2, SDL_Rect * rect1, SDL_Rect * rect2) { int xmin = max(rect1->x, rect2->x); int xmax = min(rect1->x + _width, rect2->x + fs->_width); int ymin = max(rect1->y, rect2->y); int ymax = min(rect1->y + _height, rect2->y + fs->_height); if ( (xmin > xmax) || (ymin > ymax) ) return(false); void *pix1 = _surface->pixels; void *pix2 = fs->_surface->pixels; Uint8 pixfmt = screen->format->BytesPerPixel; Uint32 empty_pixel = 0; // faster than CreateHicolorPixel(screen->format, 0, 0, 0); int sp1 = _surface->pitch / pixfmt; int sp2 = fs->_surface->pitch / pixfmt; int xdisp1 = ((idx1 % _nframes) * _width); int xdisp2 = ((idx2 % fs->_nframes) * fs->_width); while ( ymin < ymax ) { // was ymin <= ymax int xrun = xmin; while ( xrun < xmax ) { // was xrun <= xmax int p1off = sp1 * (ymin - rect1->y) + xdisp1 + (xrun - rect1->x); int p2off = sp2 * (ymin - rect2->y) + xdisp2 + (xrun - rect2->x); if ( ( getPix(pix1, p1off, pixfmt) != empty_pixel ) && ( getPix(pix2, p2off, pixfmt) != empty_pixel) ) { return(true); } xrun++; } ymin++; } return(false); } gav-0.9.1/FrameSeq.h000066400000000000000000000046341423175241600141660ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __FRAMESEQ_H__ #define __FRAMESEQ_H__ #include #include #include extern SDL_Surface *screen; class FrameSeq { protected: SDL_Surface * _surface; int _nframes; int _width; int _height; void setSurfaceAndFrames(SDL_Surface *sfc, int nframes, bool useAlpha) { _surface = SDL_DisplayFormat(sfc); if ( useAlpha ) SDL_SetColorKey(_surface, SDL_SRCCOLORKEY, (Uint32) SDL_MapRGB(screen->format, 0, 0, 0)); SDL_FreeSurface(sfc); _nframes = nframes; _width = _surface->w / _nframes; _height = _surface->h; } public: FrameSeq (const char * filename, int nframes, bool useAlpha) { SDL_Surface * temp; if ((temp = IMG_Load(filename)) == NULL) { fprintf(stderr, "FrameSeq: cannot load %s\n", filename); exit(-1); } setSurfaceAndFrames(temp, nframes, useAlpha); } FrameSeq(SDL_Surface *sfc, int nframes, bool useAlpha) { setSurfaceAndFrames(sfc, nframes, useAlpha); } virtual ~FrameSeq() { SDL_FreeSurface(_surface); } virtual SDL_Surface *surface() { return _surface; } inline int width() { return _width; } inline int height() { return _height; } /* Blits an entire frame to screen */ virtual void blit(int idx, SDL_Surface * dest, SDL_Rect * rect); /* Blits part of a frame to screen */ void blitRect(int idx, SDL_Surface * dest, SDL_Rect * rect); bool collidesWith(FrameSeq *fs, int idx1, int idx2, SDL_Rect * rect1, SDL_Rect * rect2); virtual FrameSeq *getActualFrameSeq() { return this; } // bit ugly virtual int screenWidth() { return _width; } // bit ugly }; #endif gav-0.9.1/GameRenderer.cpp000066400000000000000000000025661423175241600153600ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "GameRenderer.h" using namespace std; GameRenderer * gameRenderer = NULL; SDL_Rect GameRenderer::convertCoordinates(SDL_Rect *rect) { // Compute the actual coordinates in the display realm SDL_Rect r; r.x = (int) round(rect->x * _ratioX); r.y = (int) round(rect->y * _ratioY); r.w = (int) round(rect->w * _ratioX); r.h = (int) round(rect->h * _ratioY); return r; } void GameRenderer::display(SDL_Surface *dest, SDL_Rect *rect, FrameSeq *what, int frame) { SDL_Rect r = convertCoordinates(rect); what->blit(frame, dest, &r); } gav-0.9.1/GameRenderer.h000066400000000000000000000026261423175241600150220ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _GAMERENDERER_H_ #define _GAMERENDERER_H_ #include #include "FrameSeq.h" #include "globals.h" class GameRenderer { float _ratioX; float _ratioY; public: GameRenderer() { _ratioX = 1.0; _ratioY = 1.0; } GameRenderer(int aw, int ah, int lw, int lh) { _ratioX = (float) aw / (float) lw; _ratioY = (float) ah / (float) lh; } // if the frame param is omitted, the whole surface is blitted to dest void display(SDL_Surface *dest, SDL_Rect *rect, FrameSeq *what, int frame = 0); SDL_Rect convertCoordinates(SDL_Rect *rect); }; #endif // _GAMERENDERER_H_ gav-0.9.1/InputState.cpp000066400000000000000000000024621423175241600151130ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include "InputState.h" SDL_Event InputState::getEventWaiting() { SDL_Event e; SDL_WaitEvent(&e); return(e); } void InputState::getInput() { SDL_PumpEvents(); /* Grab a snapshot of the keyboard. */ keystate = SDL_GetKeyState(NULL); // SHOULD THIS BE DELETED AT SOME POINT?? if ( SDL_PollEvent(&event) ) { if (event.type == SDL_QUIT) exit(0); } for ( int i = 0; i < 12; i++ ) _f[i] = keystate[SDLK_F1 + i]; } InputState::~InputState() { } gav-0.9.1/InputState.h000066400000000000000000000023721423175241600145600ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __INPUTSTATE_H__ #define __INPUTSTATE_H__ #include #include #include "globals.h" class InputState { private: Uint8 _f[12]; Uint8 *keystate; SDL_Event event; public: InputState() {} virtual void getInput(); virtual Uint8 *getF() { return _f; } virtual Uint8 *getKeyState() { return keystate; } virtual SDL_Event getEvent() { return event; } virtual SDL_Event getEventWaiting(); virtual ~InputState(); }; #endif gav-0.9.1/LICENSE000066400000000000000000000431311423175241600133120ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. gav-0.9.1/LogicalFrameSeq.cpp000066400000000000000000000035211423175241600160060ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "LogicalFrameSeq.h" #include "GameRenderer.h" #include "globals.h" using namespace std; /* start - the starting width zoom - the zoom factor calculated from background ratio step - the new width must be a 'step' multiple returns the zoom factor nearest to 'zoom', in order to obtain a 'step' multiple. */ double exactScaleFactor(int startw, double zoom, int step) { if ( step == 1 ) return zoom; double corr = 0.0; double ratio = 1/zoom; double fract = (double) startw / ratio; int temp = (int) round(fract / step); int adjustedResize = temp * step; // printf("W: %d NP: %d\n", startw, temp); double adjustedRatio = (double) startw / (double) adjustedResize; /* int tmp2 = (int) (startw / adjustedRatio); // printf ("ar: %g tmp2: %d\n", adjustedRatio, tmp2); if ( tmp2 < adjustedResize ) corr = 0.5; */ return (1/adjustedRatio + (corr/(double) startw)); } void LogicalFrameSeq::blit(int idx, SDL_Surface *dest, SDL_Rect *rect) { gameRenderer->display(dest, rect, _actualFrameSeq, idx); } gav-0.9.1/LogicalFrameSeq.h000066400000000000000000000052351423175241600154570ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __LOGICALFRAMESEQ_H__ #define __LOGICALFRAMESEQ_H__ #include #include #include #include //#include #include "ResizeSurface.h" #include "globals.h" #include "FrameSeq.h" double exactScaleFactor(int startw, double zoom, int step); class LogicalFrameSeq : public FrameSeq { protected: FrameSeq *_actualFrameSeq; public: LogicalFrameSeq(const char * filename, int nframes, bool useAlpha = true) : FrameSeq(filename, nframes, useAlpha) { // if ( ratioX == 0.0 ) float ratioX = ::configuration.resolution.ratioX; // if ( ratioY == 0.0 ) float ratioY = ::configuration.resolution.ratioY; ratioX = exactScaleFactor(_surface->w, ratioX, nframes); // SDL_Surface *as = zoomSurface(_surface, ratioX, ratioY, SMOOTHING_OFF); SDL_Surface *as = resizeSurface(_surface, (int) round(ratioX*_surface->w), (int) round(ratioY*_surface->h)); //printf("NS->w: %d\n", as->w); _actualFrameSeq = new FrameSeq(as, nframes, useAlpha); /* Modify _width according to the new computed ratioX */ _width = (int) (((double) _actualFrameSeq->width()) / ratioX); } virtual ~LogicalFrameSeq() { delete(_actualFrameSeq); } virtual SDL_Surface *surface() { return _actualFrameSeq->surface(); } virtual void blit(int idx, SDL_Surface * dest, SDL_Rect * rect); /* These two functions are needed when it is required to reason in terms of actual pixels (as in ScreenFonts to make sure the font is nicely laid out. In order to be able to exchange between FrameSeq and LogicalFrameSeq, however, it has been necessary to add these to FrameSeq as well. Should have worked that out better... */ virtual FrameSeq *getActualFrameSeq() { return _actualFrameSeq; } virtual int screenWidth() { return _actualFrameSeq->width(); } }; #endif // __LOGICALFRAMESEQ_H__ gav-0.9.1/Makefile000066400000000000000000000032741423175241600137510ustar00rootroot00000000000000# GAV - Gpl Arcade Volleyball # Copyright (C) 2002 # GAV team (http://sourceforge.net/projects/gav/) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. include CommonHeader ROOT= SUBDIRS = menu automa net CXXFLAGS += $(foreach DIR, $(SUBDIRS), -I$(DIR)) -I. ALL_OBJ = $(foreach DIR, $(SUBDIRS), $(DIR)/$(DIR:%=%_module.o)) DEPEND = Makefile.depend .PHONY: depend clean all $(SUBDIRS) all: $(SUBDIRS) gav $(SUBDIRS): $(MAKE) -C $@ $(ALL_OBJ): $(MAKE) -C $(@D:%_module.o=%) gav: $(ALL_OBJ) $(OFILES) $(CXX) -o gav $(OFILES) $(ALL_OBJ) $(LDFLAGS) strip gav clean: for i in $(SUBDIRS) ; do \ $(MAKE) -C $$i clean;\ done rm -f *~ *.o gav $(DEPEND) bindist: all for i in $(SUBDIRS) ; do \ $(MAKE) -C $$i clean;\ done rm -f *~ *.o install: all install gav $(ROOT)/usr/bin install -d $(ROOT)/usr/share/games/gav/themes cp -r themes/* $(ROOT)/usr/share/games/gav/themes depend: for i in $(SUBDIRS) ; do \ $(MAKE) -C $$i depend;\ done $(RM) $(DEPEND) $(CXX) -M $(CXXFLAGS) $(SRCS) >> $(DEPEND) ifeq ($(wildcard $(DEPEND)),$(DEPEND)) include $(DEPEND) endif gav-0.9.1/Makefile.Linux000066400000000000000000000032741423175241600150470ustar00rootroot00000000000000# GAV - Gpl Arcade Volleyball # Copyright (C) 2002 # GAV team (http://sourceforge.net/projects/gav/) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. include CommonHeader ROOT= SUBDIRS = menu automa net CXXFLAGS += $(foreach DIR, $(SUBDIRS), -I$(DIR)) -I. ALL_OBJ = $(foreach DIR, $(SUBDIRS), $(DIR)/$(DIR:%=%_module.o)) DEPEND = Makefile.depend .PHONY: depend clean all $(SUBDIRS) all: $(SUBDIRS) gav $(SUBDIRS): $(MAKE) -C $@ $(ALL_OBJ): $(MAKE) -C $(@D:%_module.o=%) gav: $(ALL_OBJ) $(OFILES) $(CXX) -o gav $(OFILES) $(ALL_OBJ) $(LDFLAGS) strip gav clean: for i in $(SUBDIRS) ; do \ $(MAKE) -C $$i clean;\ done rm -f *~ *.o gav $(DEPEND) bindist: all for i in $(SUBDIRS) ; do \ $(MAKE) -C $$i clean;\ done rm -f *~ *.o install: all install gav $(ROOT)/usr/bin install -d $(ROOT)/usr/share/games/gav/themes cp -r themes/* $(ROOT)/usr/share/games/gav/themes depend: for i in $(SUBDIRS) ; do \ $(MAKE) -C $$i depend;\ done $(RM) $(DEPEND) $(CXX) -M $(CXXFLAGS) $(SRCS) >> $(DEPEND) ifeq ($(wildcard $(DEPEND)),$(DEPEND)) include $(DEPEND) endif gav-0.9.1/Makefile.cross.w32000066400000000000000000000031231423175241600155040ustar00rootroot00000000000000# GAV - Gpl Arcade Volleyball # Copyright (C) 2002 # GAV team (http://sourceforge.net/projects/gav/) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. include CommonHeader ROOT= SUBDIRS = menu automa net CXXFLAGS += $(foreach DIR, $(SUBDIRS), -I$(DIR)) -I. -Dmain=SDL_main SUBDIRS_SRCS = $(foreach DIR, $(SUBDIRS), $(wildcard $(DIR)/*.cpp)) ALL_OBJ = $(SUBDIRS_SRCS:%.cpp=%.o) DEPEND = Makefile.depend .PHONY: depend clean all $(SUBDIRS) all: $(SUBDIRS) gav.exe $(SUBDIRS): $(MAKE) -C $@ gav.exe: $(ALL_OBJ) $(OFILES) $(CXX) -o gav.exe $(OFILES) $(ALL_OBJ) $(LDFLAGS) strip gav.exe clean: for i in $(SUBDIRS) ; do \ $(MAKE) -C $$i clean;\ done rm -f *~ *.o gav gav.exe $(DEPEND) bindist: all for i in $(SUBDIRS) ; do \ $(MAKE) -C $$i clean;\ done rm -f *~ *.o depend: for i in $(SUBDIRS) ; do \ $(MAKE) -C $$i depend;\ done $(RM) $(DEPEND) $(CXX) -M $(CXXFLAGS) $(SRCS) >> $(DEPEND) ifeq ($(wildcard $(DEPEND)),$(DEPEND)) include $(DEPEND) endif gav-0.9.1/Player.cpp000066400000000000000000000113601423175241600142440ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "Player.h" #include "ControlsArray.h" #include #include "Team.h" #define SPEED_FACT_CONST (5) int Player::maxX() { return _team->xmax(); } int Player::minX() { return _team->xmin(); } int Player::minY() { return _team->ymin(); } int Player::speedX() { if ( (_speedX > 0) && (_x < (_team->xmax() - _frames->width())) ) return(_speedX); if ( (_speedX < 0) && (_x > _team->xmin()) ) return(_speedX); return(0); } bool Player::setState(pl_state_t st, bool force) { if ((_state == st) && !force) return false; _state = st; switch (st) { case PL_STATE_JUMP: _currFrameB = configuration.playerFrameConf.playerJmpB - 1; _currFrameE = configuration.playerFrameConf.playerJmpE - 1; if ( (_currFrameB == _currFrameE) || (configuration.playerFrameConf.playerJmpP == 0) ) _currStateFrameDelay = 0; else _currStateFrameDelay = configuration.playerFrameConf.playerJmpP/ ( _currFrameE - _currFrameB); break; case PL_STATE_STILL: _currFrameB = configuration.playerFrameConf.playerStillB - 1; _currFrameE = configuration.playerFrameConf.playerStillE - 1; if ( (_currFrameB == _currFrameE) || (configuration.playerFrameConf.playerStillP == 0) ) _currStateFrameDelay = 0; else _currStateFrameDelay = configuration.playerFrameConf.playerStillP/ ( _currFrameE - _currFrameB); break; case PL_STATE_WALK: _currFrameB = configuration.playerFrameConf.playerRunB - 1; _currFrameE = configuration.playerFrameConf.playerRunE - 1; if ( (_currFrameB == _currFrameE) || (configuration.playerFrameConf.playerRunP == 0) ) _currStateFrameDelay = 0; else _currStateFrameDelay = configuration.playerFrameConf.playerRunP/ ( _currFrameE - _currFrameB); break; } return true; } void Player::updateFrame(int ticks, bool changed) { _overallPassed += ticks; if ( changed ) { _overallPassed = 0; _frameIdx = _currFrameB; } else if ( _currStateFrameDelay && (_overallPassed > _currStateFrameDelay) ) { // update _frameIdx if ( ++_frameIdx > _currFrameE ) _frameIdx = _currFrameB; _overallPassed = 0; } } /* Invoked by the network client in order to draw the proper animation frame */ void Player::updateClient(int ticks, pl_state_t st) { updateFrame(ticks, setState(st)); } void Player::update(int ticks, ControlsArray *ca) { triple_t input = ca->getCommands(_plId); int dx = 0; bool firstTime = (_overallPassed == 0); if ( input.left ) dx--; if ( input.right ) dx++; _speedX = dx?(dx * _speed):0; _displx += (float) dx * (_speed * ticks / 1000.0); if ( fabs(_displx) >= 1.0 ) { _x += (int) _displx; _displx -= (int) _displx; } if ( _x > (_team->xmax() - _frames->width()) ) _x = (_team->xmax() - _frames->width()); else if ( _x < _team->xmin() ) _x = _team->xmin(); if ( _y == GROUND_LEVEL() && input.jump ) { _speedY = -(configuration.SPEEDY); } if ( _y > GROUND_LEVEL() ) { _y = GROUND_LEVEL(); _speedY = 0; } _disply = (float) (_speedY * SPEED_FACT_CONST * ((float) ticks / 1000.0)); if ( fabs(_disply) >= 1.0 ) { _y += (int) _disply; _disply -= (int) _disply; } if ( _y < GROUND_LEVEL() ) _speedY += (float) (configuration.SPEEDY * SPEED_FACT_CONST * ticks) / 1000.0; int _oldState = _state; /* detect state changes */ if ( _y < GROUND_LEVEL() ) { setState(PL_STATE_JUMP); // jumping } else if (firstTime || (!dx)) { // player still setState(PL_STATE_STILL, firstTime); } else if ( dx ) { // player running setState(PL_STATE_WALK); } updateFrame(ticks, (_oldState != _state)); } void Player::draw(SDL_Surface * screen) { SDL_Rect rect; rect.x = _x; rect.y = _y; _frames->blit(_frameIdx, screen, &rect); } bool Player::collidesWith(FrameSeq *fs, int idx, SDL_Rect *rect) { SDL_Rect myRect; myRect.x = _x; myRect.y = _y; return(_frames->collidesWith(fs, _state, idx, &myRect, rect)); } gav-0.9.1/Player.h000066400000000000000000000110611423175241600137070ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __PLAYER_H__ #define __PLAYER_H__ #include #include "FrameSeq.h" #include #include "Theme.h" #include "globals.h" #define RESET_WALK_SEQUENCE (100000) class Team; class ControlsArray; #define NUM_TYPES (5) typedef enum { PL_TYPE_MALE_LEFT = 1, PL_TYPE_FEMALE_LEFT, PL_TYPE_MALE_RIGHT, PL_TYPE_FEMALE_RIGHT } pl_type_t; #define NUM_STATES (3) typedef enum { PL_STATE_STILL = 0, PL_STATE_WALK, PL_STATE_JUMP } pl_state_t; typedef enum { PL_CTRL_HUMAN, PL_CTRL_AI, PL_CTRL_REMOTE } pl_ctrl_t; class Player { protected: FrameSeq * _frames; std::string _name; pl_type_t _type; pl_state_t _state; int _frameIdx; int _speed; int _x, _y; int _speedX; // actual x speed float _speedY; int _plId; int _oif; int _currStateFrameDelay, _currFrameB, _currFrameE; Team *_team; int _overallPassed; float _displx, _disply; char *_fileNames[NUM_TYPES]; public: Player() {}; Player(Team *team, std::string name, pl_type_t type, int idx, int speed) { init(team, name, type, idx, speed); } void init(Team *team, std::string name, pl_type_t type, int idx, int speed) { _fileNames[PL_TYPE_MALE_LEFT] = (char *)malloc(sizeof(char)*(MAXPATHLENGTH+1)); strncpy(_fileNames[PL_TYPE_MALE_LEFT], CurrentTheme->leftmale(), MAXPATHLENGTH); _fileNames[PL_TYPE_MALE_RIGHT] = (char *)malloc(sizeof(char)*(MAXPATHLENGTH+1)); strncpy(_fileNames[PL_TYPE_MALE_RIGHT], CurrentTheme->rightmale(), MAXPATHLENGTH); _fileNames[PL_TYPE_FEMALE_LEFT] = (char *)malloc(sizeof(char)*(MAXPATHLENGTH+1)); strncpy(_fileNames[PL_TYPE_FEMALE_LEFT], CurrentTheme->leftfemale(), MAXPATHLENGTH); _fileNames[PL_TYPE_FEMALE_RIGHT] = (char *)malloc(sizeof(char)*(MAXPATHLENGTH+1)); strncpy(_fileNames[PL_TYPE_FEMALE_RIGHT], CurrentTheme->rightfemale(), MAXPATHLENGTH); _team = team; _name = name; _plId = idx; _oif = -1; _type = type; _state = PL_STATE_STILL; _frameIdx = configuration.playerFrameConf.playerStillB - 1; _speed = speed; _speedX = 0; _speedY = 0.0; _overallPassed = 0; _displx = _disply = 0.0; Player::loadFrames(); _y = GROUND_LEVEL(); } virtual ~Player() { free(_fileNames[PL_TYPE_MALE_LEFT]); free(_fileNames[PL_TYPE_MALE_RIGHT]); free(_fileNames[PL_TYPE_FEMALE_LEFT]); free(_fileNames[PL_TYPE_FEMALE_RIGHT]); delete(_frames); } inline int GROUND_LEVEL() { return(configuration.FLOOR_ORD -_frames->height());} // (346) inline std::string name() {return _name;} inline int id() { return _plId; } inline int orderInField() { return _oif; } inline void setOIF(int oif) { _oif = oif; } inline pl_type_t type() {return _type;} inline pl_state_t state() {return _state;} bool setState(pl_state_t s, bool force = false); inline int speed() {return _speed;} inline void setSpeed(int s) {_speed = s;} inline float speedY() {return _speedY;} inline void setSpeedY(float s) {_speedY = s;} int speedX(); inline int x() {return _x;} inline void setX(int x) {_x = x;} inline int y() {return _y;} inline void setY(int y) {_y = y;} inline Team *team() {return(_team);} void loadFrames() { _frames = new LogicalFrameSeq(_fileNames[_type], configuration.playerFrameConf.nPlayerFrames); } void updateFrame(int ticks, bool changed); void updateClient(int ticks, pl_state_t state); void update(int ticks, ControlsArray *ca); void draw(SDL_Surface * screen); inline int width() { return _frames->width(); } inline int height() { return _frames->height(); } int minX(); int maxX(); int minY(); bool collidesWith(FrameSeq *fs, int idx, SDL_Rect *rect); virtual pl_ctrl_t getCtrl() { return PL_CTRL_HUMAN; }; }; #endif gav-0.9.1/PlayerAI.cpp000066400000000000000000000164171423175241600144660ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "PlayerAI.h" #include "Ball.h" #define JUMP_LIMIT ( (int) (configuration.SCREEN_HEIGHT / 1.82) ) #define JUMPING_TIME ( 150 ) #define NEWPL_SIDE (-1) triple_t PlayerAI::planAction() { int jmp = 0; //int i; int side = (team())->side(); int nplrs = (team())->nplayers(); int px, bx, fs, mp, bsx, net, wall, xt, xs; /* Normalized values */ int mypos, minslot, maxslot; float slotsize; int move, pw; triple_t ret; int ttime; net = fs = abs(maxX() - minX()); wall = 0; mp = fs/2; /* Normalize player x position, ball x position and ball x speed: Reasoning as it plays on the left, net=fs, wall=0 */ px = (side>0)?(maxX()-x()-width()/2): (x()+width()/2-minX()); pw = width(); bx = (side>0)?(maxX()-(_b->radius()+_b->x())): (_b->radius()+_b->x()-minX()); bsx = -side*_b->spdx(); xs = bx; /* if ( (_y > _highestpoint) ){ printf("_y: %d, hp: %d\n",_y, _highestpoint); _highestpoint = _y; }*/ if ( !_b->gravity() ) { xt = (side>0)?(maxX()-(_b->radius()/2+_b->x())): (_b->radius()/2+_b->x()-minX()); } else { //xt = bx; /* The old one int exp_y = _b->y(); int exp_x = _b->x(); int sx = _b->spdx(); int sy = _b->spdy(); // printf("I(%d,%d) -> (%d,%d)\n",exp_x,exp_y,sx,sy); ttime=0; while (exp_y < 240) { int passed=20; int px = exp_x; int py = exp_y; ttime += passed; exp_x += (int)(sx * ((float) passed/1000.0)); exp_y -= (int)(sy * ((float) passed/1000.0)); sy = (int)(sy-((float) passed*_b->gravity()/1000.0)); if ( exp_y < configuration.CEILING ) { exp_y = configuration.CEILING; sy = - (int ) (sy*ELASTIC_SMOOTH); } if ( exp_x < configuration.LEFT_WALL ) { exp_x = configuration.LEFT_WALL; sx = - (int ) (sx*ELASTIC_SMOOTH); } if ( exp_x > configuration.RIGHT_WALL - (_b->radius()*2) ) { exp_x = configuration.RIGHT_WALL - (_b->radius()*2); sx = - (int ) (sx*ELASTIC_SMOOTH); } int minx = (exp_x < px)?exp_x:px; if ( (minx > (configuration.NET_X-_b->radius()*2)) && ( minx < configuration.NET_X ) ) { /* The ball crossed the net region */ if ( ( exp_y > configuration.NET_Y ) || ( py > configuration.NET_Y ) ) { /* Probably the ball will hit the net, consider a full collision */ exp_x = (minx == exp_x)?configuration.NET_X-_b->radius()*2:configuration.NET_X; sx = - (int ) (sx*ELASTIC_SMOOTH); if (!sx) sx = side*20;/*SMALL_SPD_X*/ } } // printf("+(%d,%d) -> (%d,%d)\n", exp_x, exp_y, sx, sy); } xt = exp_x+_b->radius(); xt = (side>0)?(maxX()-xt):(xt-minX()); // printf("Expected X: %d (bsx: %d, bsy: %d, bx: %d, by: %d (radius: %d, rw:%d, hp: %d)\n",xt, _b->spdx(), _b->spdy(), _b->x(), _b->y(), _b->radius(), RIGHT_WALL(2*_b->radius()),_highestpoint); // printf("HP: %d\n"u, _highestpoint); } //Expected X: 80061 (bsx: -624, bsy: 679, bx: 455, by: 241 (radius: 25) slotsize = net/nplrs; if (nplrs > 1) { std::vector plv = (team())->players(); /* Look for my id */ std::vector::iterator it; int myidx = orderInField(), i; /* If nobody set the Order In Field I will do for all the team */ if (orderInField() < 0) { for ( it = plv.begin(), i=0; it != plv.end(); it++,i++ ) (*it)->setOIF(i); myidx = orderInField(); } mypos = (int)(slotsize*(myidx+0.5)); Player *closerp; int minxsearching = net, minopx, opx, closer; for ( it = plv.begin(); it != plv.end(); it++ ) { opx = (side>0)?((*it)->maxX()-(*it)->x()-(*it)->width()/2): ((*it)->x()+(*it)->width()/2-(*it)->minX()); if ( ( (*it)->id() != id() ) && ( abs(opx-mypos) < minxsearching ) ){ closer=(*it)->id(); closerp=(*it); minxsearching=abs(opx-mypos); minopx=opx; } } /* Someone is inside my slot over the 15% the slot size */ if (minxsearching < (slotsize*0.35)) { myidx = closerp->orderInField(); closerp->setOIF(orderInField()); setOIF(myidx); } mypos = (int )(slotsize*(myidx+0.5)); minslot = (int )(slotsize*myidx); maxslot = (int )(slotsize*(myidx+1)); } else { minslot = wall; mypos = mp-50; // behind the middle point maxslot = net; } /* My rest position has been chosen, and the slot determined */ // int hd = 3*_b->radius()/4; int hd = (_b->radius()+width())/2; int minhd = 0; if ( !_b->gravity() ) { if (hd/2 >= 12) minhd = rand()%(hd/2-10)+10; hd = rand()%(hd-minhd)+minhd+1; } /* When I consider closer, is the closer to the falling point */ /* I care whether I'm the closer only when it's "service time" */ int closest = 1; if ( !_b->gravity() ) { int opx; std::vector plv = (team())->players(); /* Look for my id */ std::vector::iterator it; for ( it = plv.begin(); it != plv.end(); it++ ) { opx = (side>0)?((*it)->maxX()-(*it)->x()-(*it)->width()/2): ((*it)->x()+(*it)->width()/2-(*it)->minX()); if ( abs(px-xt) > abs(opx-xt) ) closest = 0; } } // printf("%d\n", _b->spdy()); // if (abs(bsx) < 160) hd += 7; if ( _b->gravity() ) { if ( ( (abs(px - bx)) <= hd ) && // is the ball close? //(abs(_b->spdy()) > 10) && // is the ball going down too slow? //( abs(px-bx) > 5 ) && // am I to close to the ball center? // Can I reach the ball jumping, or am I missing the ball? (_b->y() > ((_b->spdy() > 20)?JUMP_LIMIT:(JUMP_LIMIT+20))) ) { jmp = 1; } } else { // I serve only forward jmp = ( (minhd < (bx - px) && ((bx - px) <= hd) ) ); } // printf("hd: %d - %d (%d - %d)\n",hd, abs(bx-px), _b->spdy(), _b->y()); // if I'm the closest player I serve (when it's "service time"). // if the ball is (too) outside my slot I do not go for it. double concern = (nplrs>1)?(slotsize*1.05):slotsize; if ( (abs(xt-mypos) < concern) && closest) { if ( _b->gravity() ) { move = xt-hd-px; } else { // I serve only forward move = bx-hd-px; } if ( ( ttime < JUMPING_TIME ) ){ jmp = 1; move = (bx-px); } } else { move = mypos-px; } move=-side*(move); ret.left = ret.right = ret.jump = 0; if ( abs(move) > 2) { if ( move < 0 ) ret.left = 1; if ( move > 0 ) ret.right = 1; } if ( jmp ) ret.jump = 1; return ret; } gav-0.9.1/PlayerAI.h000066400000000000000000000024251423175241600141250ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __PLAYERAI_H__ #define __PLAYERAI_H__ #include "Player.h" #include "ControlsArray.h" class Ball; class PlayerAI : public Player { Ball * _b; protected: int _highestpoint; public: PlayerAI(Team *team, std::string name, pl_type_t type, int idx, int speed, Ball *b) { init(team, name, type, idx, speed); _b = b; _highestpoint = 0; } virtual pl_ctrl_t getCtrl() { return PL_CTRL_AI; } virtual triple_t planAction(); }; #endif gav-0.9.1/PlayerHuman.h000066400000000000000000000021461423175241600147040ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __PLAYERHUMAN_H__ #define __PLAYERHUMAN_H__ #include "Player.h" class PlayerHuman : public Player { public: PlayerHuman(Team *team, std::string name, pl_type_t type, int idx, int speed) { init(team, name, type, idx, speed); } pl_ctrl_t getCtrl() { return PL_CTRL_HUMAN; } }; #endif gav-0.9.1/PlayerRemote.h000066400000000000000000000021531423175241600150650ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __PLAYERREMOTE_H__ #define __PLAYERREMOTE_H__ #include "Player.h" class PlayerRemote : public Player { public: PlayerRemote(Team *team, std::string name, pl_type_t type, int idx, int speed) { init(team, name, type, idx, speed); } pl_ctrl_t getCtrl() { return PL_CTRL_REMOTE; } }; #endif gav-0.9.1/README000066400000000000000000000055711423175241600131730ustar00rootroot00000000000000Welcome to GAV, a GPL rendition of the popular Arcade Volleyball, previously hosted by Sourceforge (http://www.sourceforge.net/projects/gav) Some menu items might not be implemtented yet. See CHANGELOG for recent modifications. Keys: default keys are: Left player: z, c and left shift Right player: left, right and up cursor keys. use the arrow keys to navigate the menus, spacebar or enter to activate items, F10 to switch to fullscreen mode while playing. Network Game: One of the programs must function as server. The server determines the parameters of the game (except for the theme, which might be different from client to client). Whatever player the server configures as "Keyboard/Joy" is local to the server, "Computer/Net" players are controlled either by the computer or by a remote client. Starting the server, you specify how many clients will attach: each of them will replace a computer player. This way, you can play in several different ways: a local player against a remote one, a local and AI player against 2 remote ones, an AI player against a local and a remote one... Bear in mind that players 1 and 3 play on the left side, and 2 and 4 on the right side. The client need not select anything about the players: just the side it will play on (left or right). Currently, only one player per client is allowed (while more than one can play on the server). The client's player is always controlled by Player 1's controls. Installing themes: themes default to the /usr/share/games/gav/themes directory, but if a directory ./themes exists, they are looked for in such a directory. This might cause problem if you start GAV from a directory that contains a 'themes' subdirectory, but no classic theme, which is the default. Sounds: Sounds are looked for in the current theme's directory. If no sound is found there, they are looked for in the "default sound" directory, which is the directory "sounds" at the same level as the "themes" directory. Provided with the game by default (as long as theme creators do not come with appropriate sounds for their themes) are the default sounds (two 'whistles' at different pitch indicating the service change and the scoring of a point). Theme creators interesting in setting up sounds, can find the sound filenames, associated with the various events, in the array "sound_fnames", found in SoundMgr.cpp. Thanks: - Marius Andreiana, who provided the gnome menu entry. - Mark Whittington, who provided patches to compile under Win32, and working on an installer. - Fernando "Yisus" Notari, who provided the Yisus, Yisus2 and unnamed themes. - El Fabio, who provided the fabeach theme. - Serge S. Fukanchik for his feedback and his precious aid to increase GAV efficiency. - Aleksander Kam for provinding a useful patch - Sergei Trofimovich for providing a patch Authors: To contact the authors, please refer to the Github repository: https://github.com/ctrl-z-bg/gav gav-0.9.1/README.tags000066400000000000000000000000571423175241600141220ustar00rootroot000000000000002005-12-27 PRESCALE (before the scale feature) gav-0.9.1/README.win32000066400000000000000000000006151423175241600141260ustar00rootroot00000000000000Welcome to GAV, a GPL rendition of the popular Arcade Volleyball. Some of the menu items have not been implemented yet. Themes support is there, but unaccessible if not from the code. The keys are: left player: z, c and left shift right player: <-, -> and cursor up. To activate a menu item, SPACE. To exit from the game and go back to the menu, ESC To switch to fullscreen (much faster), F10 gav-0.9.1/ResizeSurface.cpp000066400000000000000000000112331423175241600155610ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * These functions are derived from SDL_buffer. */ #include #include "ResizeSurface.h" typedef struct tColorRGBA { Uint8 r; Uint8 g; Uint8 b; Uint8 a; } tColorRGBA; /* * 32bit Zoomer with optional anti-aliasing by bilinear interpolation. * Zoomes 32bit RGBA/ABGR 'src' surface to 'dst' surface. * Forked from SDL_rotozoom.c, LGPL (c) A. Schiffler */ static int zoomSurfaceRGBA (SDL_Surface * src, SDL_Surface * dst) { int x, y, //current dst->x and dst->y xscale, yscale, //src/dst proportions * 65536 *sx_offset, *sy_offset, //row/columnt increment tables *csx_offset, *csy_offset, //pointers to current row/columnt increment element csx, csy, sgap, dgap; tColorRGBA *sp, *csp, *dp; // Variables setup xscale = (int) (65536.0 * (double) src->w / (double) dst->w); yscale = (int) (65536.0 * (double) src->h / (double) dst->h); // Allocate memory for row increments sx_offset = (int*)malloc((dst->w + 1) * sizeof(Uint32)); sy_offset = (int*)malloc((dst->h + 1) * sizeof(Uint32)); if (sx_offset == NULL || sy_offset == NULL) { free(sx_offset); free(sy_offset); return -1; } // Precalculate row increments csx = 0; csx_offset = sx_offset; for (x = 0; x <= dst->w; x++) { *csx_offset = csx; csx_offset++; csx &= 0xffff; csx += xscale; } csy = 0; csy_offset = sy_offset; for (y = 0; y <= dst->h; y++) { *csy_offset = csy; csy_offset++; csy &= 0xffff; csy += yscale; } // Pointer setup sp = csp = (tColorRGBA *) src->pixels; dp = (tColorRGBA *) dst->pixels; sgap = src->pitch - src->w * 4; dgap = dst->pitch - dst->w * 4; // Switch between interpolating and non-interpolating code // Non-Interpolating Zoom csy_offset = sy_offset; for (y = 0; y < dst->h; y++) { sp = csp; csx_offset = sx_offset; for (x = 0; x < dst->w; x++) { // Draw *dp = *sp; // Advance source pointers csx_offset++; sp += (*csx_offset >> 16); // Advance destination pointer dp++; } // Advance source pointer csy_offset++; csp = (tColorRGBA *) ((Uint8 *) csp + (*csy_offset >> 16) * src->pitch); // Advance destination pointers dp = (tColorRGBA *) ((Uint8 *) dp + dgap); } // Remove temp arrays free(sx_offset); free(sy_offset); return 0; } SDL_Surface * resizeSurface (SDL_Surface * buf, int width, int height) { SDL_PixelFormat * format = buf->format; int dst_w, dst_h; Uint32 Rmask,Gmask,Bmask,Amask; SDL_Surface * dest; SDL_Surface * tmp; bool toFree = false; if (format->BitsPerPixel == 32) { Rmask = format->Rmask; Gmask = format->Gmask; Bmask = format->Bmask; Amask = format->Amask; } else { Rmask = 0x000000ff; Gmask = 0x0000ff00; Bmask = 0x00ff0000; Amask = 0xff000000; } if (format->BitsPerPixel != 32 || format->Rmask != Rmask || format->Gmask != Gmask || format->Bmask != Bmask) { // New source surface is 32bit with defined RGBA ordering. // Note that Amask has been ignored in test tmp = SDL_CreateRGBSurface (SDL_SWSURFACE, buf->w, buf->h, 32, Rmask, Gmask, Bmask, Amask); SDL_BlitSurface (buf, NULL, tmp, NULL); toFree = true; } else tmp = buf; dst_w = width; dst_h = height; // Alloc space to completely contain the zoomed surface // Target surface is 32bit with source RGBA/ABGR ordering // (note that buf->zoom is already NULL) dest = SDL_CreateRGBSurface (SDL_SWSURFACE, width, height, 32, Rmask, Gmask, Bmask, Amask); SDL_LockSurface(tmp); SDL_LockSurface(dest); zoomSurfaceRGBA(tmp, dest); // Turn on source-alpha support SDL_SetAlpha(dest, SDL_SRCALPHA, 255); SDL_UnlockSurface(tmp); SDL_UnlockSurface(dest); if (toFree) SDL_FreeSurface(tmp); // Return destination surface return dest; } gav-0.9.1/ResizeSurface.h000066400000000000000000000017061423175241600152320ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __RESIZESURFACE_H__ #define __RESIZESURFACE_H__ #include SDL_Surface * resizeSurface (SDL_Surface * buf, int width, int height); #endif gav-0.9.1/ScreenFont.cpp000066400000000000000000000040361423175241600150600ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "globals.h" #include "GameRenderer.h" #include "ScreenFont.h" /* Converts to SCREEN coordinates! Should me moved into GameRenderer or something! */ void ScreenFont::printXY(SDL_Surface *dest, SDL_Rect *rect, const char * str, bool wrapAround, FrameSeq *bg) { SDL_Rect r; int _charWid = _frames->screenWidth(); r = gameRenderer->convertCoordinates(rect); r.h = _frames->getActualFrameSeq()->height(); r.w = _frames->getActualFrameSeq()->width(); const char *run = str; while ( *run ) { if ( wrapAround ) //r.x = (r.x + dest->w) % dest->w; r.x = (r.x + configuration.resolution.x) % configuration.resolution.x; if ( ((*run) >= _fst) && ((*run) < (_fst + _nchars)) ) { if ( bg ) bg->getActualFrameSeq()->blitRect(0, dest, &r); _frames->getActualFrameSeq()->blit((int) ((*run) - _fst), dest, &r); } run++; r.x += _charWid; } } void ScreenFont::printRow(SDL_Surface *dest, int row, const char *str, FrameSeq *bg) { SDL_Rect rect; /* draw menu items labels */ rect.y = configuration.CEILING + configuration.env.h/100 + row * charHeight(); rect.x = (configuration.env.w / 2) - strlen(str)*(charWidth())/2; printXY(dest, &rect, str, false, bg); } gav-0.9.1/ScreenFont.h000066400000000000000000000031501423175241600145210ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _SCREENFONT_H_ #define _SCREENFONT_H_ #include #include "LogicalFrameSeq.h" #define FONT_FIRST_CHAR ' ' #define FONT_NUMBER 104 class FrameSeq; class ScreenFont { private: FrameSeq *_frames; char _fst; // first character unsigned char _nchars; public: ScreenFont(const char *fname, char fst, unsigned char n) : _fst(fst), _nchars(n) { _frames = new LogicalFrameSeq(fname, (int) n); } ~ScreenFont() { delete(_frames); } void printXY(SDL_Surface *dest, SDL_Rect *r, const char * str, bool wrapAround = true, FrameSeq *background = NULL); void printRow(SDL_Surface *dest, int row, const char *str, FrameSeq *bg = NULL); inline int charWidth() { return(_frames->width()); } inline int charHeight() { return(_frames->height()); } }; #endif // _SCREENFONT_H_ gav-0.9.1/Sound.cpp000066400000000000000000000043441423175241600141040ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "Sound.h" #include #ifdef AUDIO int Sound::loadAndConvertSound(const char *filename, SDL_AudioSpec *spec,sound_p sound) { SDL_AudioCVT cvt; SDL_AudioSpec loaded; Uint8 *new_buf; // printf("loading sound: %s\n", filename); if(SDL_LoadWAV(filename, &loaded,&sound->samples, &sound->length)==NULL) { printf("Cannot load the wav file %s\n", filename); return 1; } if (SDL_BuildAudioCVT(&cvt, loaded.format, loaded.channels,loaded.freq,spec->format, spec->channels,spec->freq)<0) { printf("Cannot convert the sound file %s\n", filename); } cvt.len =sound->length; new_buf = (Uint8 *) malloc(cvt.len*cvt.len_mult); memcpy(new_buf,sound->samples,sound->length); cvt.buf = new_buf; if(SDL_ConvertAudio(&cvt)<0) { printf("Audio conversion failed for file %s\n", filename); free(new_buf); SDL_FreeWAV(sound->samples); return 1; } SDL_FreeWAV(sound->samples); sound->samples = new_buf; sound->length = sound->length * cvt.len_mult; return 0; } int Sound::playSound(bool loop) { int i; for(i=0;i #include "globals.h" #ifdef AUDIO class Sound { private: int id; // id in playing vector sound_t this_sound; int loadAndConvertSound(const char *filename, SDL_AudioSpec *spec,sound_p sound); public: Sound(const char *filename) { loadAndConvertSound(filename,&obtained,&this_sound); } Sound() {}; int loadSound(const char *fname) { return loadAndConvertSound(fname,&obtained,&this_sound); } int playSound(bool loop); void stopSound(); }; #endif #endif //_SOUND_H_ gav-0.9.1/SoundMgr.cpp000066400000000000000000000044601423175241600145510ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "SoundMgr.h" #ifdef AUDIO /* this should be synchronized with enum SND_* in global.h */ char *sound_fnames[] = { "bounce.wav", "select.wav", "activate.wav", "score.wav", "victory.wav", "partialnet.wav", "fullnet.wav", "servicechange.wav", "playerhit.wav", "background_playing.wav", "background_menu.wav", NULL }; SoundMgr::SoundMgr(const char *dir, const char *defdir) { memset(sounds, 0, sizeof(Sound *) * MAX_SOUNDS); const char *actualdir = dir?dir:defdir; struct stat sbuf; if ( dir && stat(dir, &sbuf) ) actualdir = defdir; char fname[100]; int sndidx = 0; for ( sndidx = SND_BOUNCE; sound_fnames[sndidx] && (sndidx <= SND_BACKGROUND_MENU); sndidx++ ) { sprintf(fname, "%s/%s", actualdir, sound_fnames[sndidx]); FILE *fp = fopen(fname, "r"); if ( !fp ) continue; printf("sound: %s\n", fname); fclose(fp); sounds[sndidx] = new Sound(); if ( sounds[sndidx]->loadSound(fname) ) { delete(sounds[sndidx]); sounds[sndidx] = NULL; } } nsounds = sndidx; } SoundMgr::~SoundMgr() { int sndidx = 0; for ( sndidx = SND_BOUNCE; (sndidx <= SND_PLAYERHIT); sndidx++ ) if ( sounds[sndidx] ) delete(sounds[sndidx]); } int SoundMgr::playSound(int which, bool loop) { if ( sounds[which] && configuration.sound ) return sounds[which]->playSound(loop); else return 0; } void SoundMgr::stopSound(int which) { if ( sounds[which] && configuration.sound ) sounds[which]->stopSound(); } #endif gav-0.9.1/SoundMgr.h000066400000000000000000000022711423175241600142140ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __SOUNDMGR_H__ #define __SOUNDMGR_H__ #include #include "globals.h" #include "Sound.h" #ifdef AUDIO #define MAX_SOUNDS 16 class SoundMgr { private: Sound *sounds[MAX_SOUNDS]; int nsounds; public: SoundMgr(const char *dir, const char *defdir); ~SoundMgr(); int playSound(int which, bool loop = false); void stopSound(int which); }; #endif #endif //_SOUNDMGR_H_ gav-0.9.1/Team.h000066400000000000000000000102511423175241600133410ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _TEAM_H_ #define _TEAM_H_ #include #include #include "Player.h" #include "PlayerHuman.h" #include "PlayerAI.h" #include "PlayerRemote.h" #include "ControlsArray.h" #include "ScreenFont.h" #include "globals.h" class Ball; extern ScreenFont *cga; class Team { private: std::vector _players; int _xmin; int _xmax; int _ymin; int _ymax; int _score; int _side; int _nplayers; int _playerNumInc; inline void addPlayer(Player * p) { _players.push_back(p); for(unsigned int i = 0; i < _players.size(); i++) _players[i]->setX((i+1) * (_xmax + _xmin) / (_players.size()+1) - (p->width() / 2)); p->setY(p->GROUND_LEVEL()); _nplayers++; } public: // side < 0: left, > 0 right Team(int side = -1) : _side(side) { _score = 0; _nplayers = 0; _playerNumInc = (side<0)?0:1; _xmin = (side<0)?(configuration.LEFT_WALL+1):(configuration.SCREEN_WIDTH / 2) ; //304 the real half field width // _xmax = _xmin + 304 ; // _xmax = _xmin + (configuration.SCREEN_WIDTH / 2) - 16; _xmax = _xmin + ((304*configuration.SCREEN_WIDTH)/640); _ymin = 0; _ymax = 0; } inline void score() { _score++; } inline void setScore(int v) { _score = v; } inline int getScore() { return(_score); } inline Player * addPlayerHuman(std::string name, pl_type_t type, int speed = configuration.DEFAULT_SPEED) { Player *p = new PlayerHuman(this, name, type, _nplayers * 2 + _playerNumInc, speed); addPlayer(p); return p; } inline Player * addPlayerRemote(std::string name, pl_type_t type, int speed = configuration.DEFAULT_SPEED) { Player *p = new PlayerRemote(this, name, type, _nplayers * 2 + _playerNumInc, speed); addPlayer(p); return p; } inline Player * addPlayerAI(std::string name, pl_type_t type, Ball * b, int speed = configuration.DEFAULT_SPEED) { Player *p = new PlayerAI(this, name, type, _nplayers * 2 + _playerNumInc, speed, b); addPlayer(p); return p; } inline std::vector players() { return(_players); } inline int xmax() { return _xmax; } inline int xmin() { return _xmin; } inline int ymax() { return _ymax; } inline int ymin() { return _ymin; } inline int side() { return _side; } inline int nplayers() { return _nplayers; } inline void xmax(int v) { _xmax = v; } inline void xmin(int v) { _xmin = v; } inline void ymax(int v) { _ymax = v; } inline void ymin(int v) { _ymin = v; } void draw(SDL_Surface *scr = screen) { SDL_Rect r; r.x = (_xmin < (configuration.SCREEN_WIDTH/3))?100:(_xmax - 100); r.y = 0; for ( std::vector::const_iterator it = _players.begin(); it != _players.end(); it++ ) (*it)->draw(scr); char s[100]; sprintf(s, "%d", _score); cga->printXY(scr, &r, s); } void update(int ticks, ControlsArray *ca) { for ( std::vector::const_iterator it = _players.begin(); it != _players.end(); it++ ) { (*it)->update(ticks, ca); } } ~Team() { Player **pl; pl = (Player**)alloca(_players.size() * sizeof(Player*)); int i = 0; for ( std::vector::const_iterator it = _players.begin(); it != _players.end(); it++ ) { pl[i++] = (*it); } for ( int j = 0; j < i; j++ ) { delete pl[j]; } } }; #endif // _TEAM_H_ gav-0.9.1/Theme.cpp000066400000000000000000000115711423175241600140560ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifdef WIN32 #include #include #endif /* WIN32 */ #include #include #include "Theme.h" using namespace std; Theme *CurrentTheme; string ThemeDir; void errorOn(string file) { throw Theme:: ThemeErrorException("Error accessing file " + file); } bool Theme::_checkTheme() { bool r; _hasConfFile = true; #ifndef WIN32 cerr << "Verifying Theme `" << _name << "' [" << ThemeDir << "/" << _name << "/]:\n"; if ( access(_CCS(_background), R_OK) ) { if (!_bigBackground) _background = TD + TH_BACKGROUND_JPG; else _background = TD + TH_BACKGROUND_BIG_JPG; if ( access(_CCS(_background), R_OK) ) errorOn("background.{jpg,png}"); } if ( access(_CCS(_font), R_OK) ) errorOn(TH_FONT); if ( access(_CCS(_fontinv), R_OK) ) errorOn(TH_FONTINV); if ( access(_CCS(_leftmale), R_OK) ) errorOn(TH_LEFTMALE); if ( access(_CCS(_rightmale), R_OK) ) errorOn(TH_RIGHTMALE); if ( access(_CCS(_leftfemale), R_OK) ) errorOn(TH_LEFTFEMALE); if ( access(_CCS(_rightfemale), R_OK) ) errorOn(TH_RIGHTFEMALE); if ( access(_CCS(_ball), R_OK) ) errorOn(TH_BALL); if ( access(_CCS(_confFile), R_OK) ) _hasConfFile = false; r = (access(_CCS(_net), R_OK) == 0); #else struct _stat sStat ; cerr << "Verifying Theme `" << _name << "' [" << ThemeDir << "\\" << _name << "\\]:\n"; if (_stat (_background.c_str(), &sStat)) { if (!_bigBackground) _background = TD + TH_BACKGROUND_JPG; else _background = TD + TH_BACKGROUND_BIG_JPG; if (_stat (_background.c_str(), &sStat)) errorOn("background.{jpg,png}"); } if (_stat (_font.c_str(), &sStat)) errorOn (TH_FONT) ; if (_stat (_fontinv.c_str(), &sStat)) errorOn (TH_FONTINV) ; if (_stat (_leftmale.c_str(), &sStat)) errorOn (TH_LEFTMALE) ; if (_stat (_rightmale.c_str(), &sStat)) errorOn (TH_RIGHTMALE) ; if (_stat (_leftfemale.c_str(), &sStat)) errorOn (TH_LEFTFEMALE) ; if (_stat (_rightfemale.c_str(), &sStat)) errorOn (TH_RIGHTFEMALE) ; if (_stat (_ball.c_str(), &sStat)) errorOn (TH_BALL) ; if ( _stat(_confFile.c_str(), &sStat) ) _hasConfFile = false; r = (_stat (_net.c_str(), &sStat) == 0) ; #endif /* WIN32 */ if ( !r ) cerr << "Warning: No net for this theme!\n"; cerr << "OK!\n"; configuration.setDefaultFrameConf(); if ( _hasConfFile ) { cerr << "Using configuration file theme.conf\n"; loadConf(); } else { cerr << "No theme.conf\n"; } return(r); } void Theme::loadConf() { Aargh myAargh; /* I want a new one, 'cause the global one is used by configuration */ myAargh.loadConf(_confFile.c_str()); /* now set things up in configuration */ string value; if ( myAargh.getArg("NPlayerFrames", value) ) configuration.playerFrameConf.nPlayerFrames = atoi(value.c_str()); if ( myAargh.getArg("PlayerStillB", value) ) configuration.playerFrameConf.playerStillB = atoi(value.c_str()); if ( myAargh.getArg("PlayerStillE", value) ) configuration.playerFrameConf.playerStillE = atoi(value.c_str()); if ( myAargh.getArg("PlayerStillP", value) ) configuration.playerFrameConf.playerStillP = atoi(value.c_str()); if ( myAargh.getArg("PlayerRunB", value) ) configuration.playerFrameConf.playerRunB = atoi(value.c_str()); if ( myAargh.getArg("PlayerRunE", value) ) configuration.playerFrameConf.playerRunE = atoi(value.c_str()); if ( myAargh.getArg("PlayerRunP", value) ) configuration.playerFrameConf.playerRunP = atoi(value.c_str()); if ( myAargh.getArg("PlayerJumpB", value) ) configuration.playerFrameConf.playerJmpB = atoi(value.c_str()); if ( myAargh.getArg("PlayerJumpE", value) ) configuration.playerFrameConf.playerJmpE = atoi(value.c_str()); if ( myAargh.getArg("PlayerJumpP", value) ) configuration.playerFrameConf.playerJmpP = atoi(value.c_str()); if ( myAargh.getArg("NBallFrames", value) ) configuration.ballFrameConf.nBallFrames = atoi(value.c_str()); if ( myAargh.getArg("BallPeriod", value) ) configuration.ballFrameConf.ballPeriod = atoi(value.c_str()); } gav-0.9.1/Theme.h000066400000000000000000000147031423175241600135230ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _THEMES_H_ #define _THEMES_H_ #include #include //#include #ifndef WIN32 #include #else #include #endif /* WIN32 */ #include #include #include "SoundMgr.h" #include "globals.h" #include "GameRenderer.h" #include "Menu.h" #include "MenuItem.h" #include "MenuItemMonitor.h" #define TH_DIR "themes" #define TH_NET "net.png" #define TH_LEFTMALE "plml.png" #define TH_RIGHTMALE "plmr.png" #define TH_LEFTFEMALE "plfl.png" #define TH_RIGHTFEMALE "plfr.png" #define TH_BACKGROUND_JPG "background.jpg" #define TH_BACKGROUND_PNG "background.png" #define TH_BACKGROUND_BIG_JPG "background_big.jpg" #define TH_BACKGROUND_BIG_PNG "background_big.png" #define TH_BALL "ball.png" #define TH_FONT "Font.png" #define TH_FONTINV "FontInv.png" #define TH_CONFNAME "theme.conf" extern std::string ThemeDir; class Theme { private: std::string _name; bool _hasnet; // To possibly add the image of the net (not used yet) std::string _background; std::string _net; std::string _font; std::string _fontinv; std::string _leftmale; std::string _rightmale; std::string _leftfemale; std::string _rightfemale; std::string _ball; std::string _confFile; std::string TD; bool _hasConfFile; bool _bigBackground; bool _checkTheme(); // Theme Validation public: Theme(std::string name) { #ifndef WIN32 DIR *dir; if ((dir = opendir(ThemeDir.c_str())) == NULL) { ThemeDir = "/usr/share/games/gav/" + ThemeDir; if ((dir = opendir(ThemeDir.c_str())) == NULL) { std::cerr << "Cannot find themes directory\n"; exit(0); } else closedir(dir); } else closedir(dir); configuration.currentTheme = name; TD = ThemeDir + "/" + name + "/"; #else HANDLE hFindFile ; WIN32_FIND_DATA ffdData ; hFindFile = FindFirstFile (ThemeDir.c_str(), &ffdData) ; if (hFindFile == INVALID_HANDLE_VALUE) { std::cerr << "Cannot find themes directory\n" ; exit(0) ; } FindClose (hFindFile) ; TD = ThemeDir + "\\" + name + "\\" ; #endif /* WIN32 */ _name = name; _bigBackground = configuration.bgBig; if ( _bigBackground ) { printf("Big Background hack: FIX IT!\n"); configuration.env.w = BIG_ENVIRONMENT_WIDTH; configuration.env.h = BIG_ENVIRONMENT_HEIGHT; double rat = ((double) configuration.desiredResolution.y) / (double) BIG_ENVIRONMENT_HEIGHT; int w = (int) (rat * BIG_ENVIRONMENT_WIDTH); int h = configuration.desiredResolution.y; configuration.setResolution(w, h); configuration.scaleFactors(BIG_ENVIRONMENT_WIDTH, BIG_ENVIRONMENT_HEIGHT); } else { configuration.env.w = ENVIRONMENT_WIDTH; configuration.env.h = ENVIRONMENT_HEIGHT; configuration.setResolutionToDesired(); configuration.scaleFactors(ENVIRONMENT_WIDTH, ENVIRONMENT_HEIGHT); } _net = TD + TH_NET; if (!_bigBackground) _background = TD + TH_BACKGROUND_PNG; else _background = TD + TH_BACKGROUND_BIG_PNG; _font = TD + TH_FONT; _fontinv = TD + TH_FONTINV; _leftmale = TD + TH_LEFTMALE; _rightmale = TD + TH_RIGHTMALE; _leftfemale = TD + TH_LEFTFEMALE; _rightfemale = TD + TH_RIGHTFEMALE; _confFile = TD + TH_CONFNAME; _ball = TD + TH_BALL; _hasnet = Theme::_checkTheme(); // ::background = IMG_Load(background()); // TODO: fetch the environment size (and therefore the ratios) // from the background image //if ( CurrentTheme->hasnet() ) IMG_Load(CurrentTheme->net()); //screenFlags = SDL_DOUBLEBUF|SDL_HWSURFACE; screenFlags |= SDL_DOUBLEBUF; screen = SDL_SetVideoMode(configuration.resolution.x, configuration.resolution.y, videoinfo->vfmt->BitsPerPixel, screenFlags); ::background = new LogicalFrameSeq(background(), 1, false); gameRenderer = new GameRenderer(configuration.resolution.x, configuration.resolution.y, configuration.env.w, configuration.env.h); cga = new ScreenFont(font(), FONT_FIRST_CHAR, FONT_NUMBER); cgaInv = new ScreenFont(fontinv(), FONT_FIRST_CHAR, FONT_NUMBER); MenuItemMonitor().apply(); #ifdef AUDIO if ( soundMgr ) delete(soundMgr); soundMgr = new SoundMgr((TD+"sounds").c_str(), (ThemeDir+"/../sounds").c_str()); #endif // AUDIO } ~Theme() { delete(::background); delete(cga); delete(cgaInv); delete(gameRenderer); } #define _CCS(str) ((str).c_str()) inline const char * name() { return( _CCS(_name) );} inline bool hasnet() { return( _hasnet );} inline bool bigBackground() { return( _bigBackground );} inline const char * background() { return( _CCS(_background) );} inline const char * net() { return( _CCS(_net) );} inline const char * font() { return( _CCS(_font) );} inline const char * fontinv() { return( _CCS(_fontinv) );} inline const char * leftmale() { return( _CCS(_leftmale) );} inline const char * rightmale() { return( _CCS(_rightmale) );} inline const char * leftfemale() { return( _CCS(_leftfemale) );} inline const char * rightfemale(){ return( _CCS(_rightfemale) );} inline const char * ball() { return( _CCS(_ball) );} void loadConf(); class ThemeErrorException { public: std::string message; ThemeErrorException(std::string msg) { message = msg; } }; }; extern Theme *CurrentTheme; inline void setThemeDir(std::string h) { ThemeDir = h; } #endif gav-0.9.1/aarg.h000066400000000000000000000071471423175241600133770ustar00rootroot00000000000000/* -*- C++ -*- */ #ifndef _AARG_H_ #define _AARG_H_ #include #include #include #include #include #include #include class Aargh { public: Aargh () { } // questo costruttore serve per avere i parametri caricati // prima dell'avvio di main, cosi' da poter chiamare i // costruttori degli oggetti globali che dipendono da // dei parametri Aargh (char *filename) { loadConf (filename); } // questi altri due costruttori sono meno necessari ma // sono comunque utili Aargh (int argc, char **argv) { parseArgs (argc, argv); } // vedi sopra Aargh (int argc, char **argv, char *filename) { parseArgs (argc, argv); loadConf (filename); } // parametri accettati // -qualcosa // -qualcosa valore bool parseArgs (int argc, char **argv) { bool allright = true; std::string base = ""; for (int i = 1; i < argc; ++i) { if (argv[i][0] == '-') { base = std::string (argv[i]); argmap[base] = "_Aargh"; } else { if (base != "") { argmap[base] = std::string (argv[i]); base = ""; } else allright = false; } } return allright; } bool loadConf (const char *filename) { bool allright = true; FILE *fp; char ln[128]; if ((fp = fopen (filename, "r")) == NULL) return (false); while (fgets (ln, 128, fp)) if (*ln != '#' && *ln != '\n') { char *key = ln; char *value = ln; while ((*value != ' ') && (*value != '\t') && (*value != '\n')) value++; // finds the first space or tab if (*value == '\n') { *value = '\0'; argmap[key] = "_Aargh"; continue; } // removes spaces and tabs while ((*value == ' ') || (*value == '\t')) { *value = '\0'; value++; } char *end = value; while ((*end != '\n') && (*end)) end++; *end = '\0'; // null terminates value (fgets puts a '\n' at the end) // now, key is a null terminated string holding the key, and value is everything which // is found after the first series of spaces or tabs. if (strcmp (key, "") && strcmp (value, "")) argmap[key] = value; } return allright; } bool getArg (std::string name) { return (argmap.find (name) != argmap.end ()); } bool getArg (std::string name, std::string & value) { if (argmap.find (name) != argmap.end ()) { value = argmap[name]; return true; } else return false; } bool getArg (std::string name, std::string & value, const char* def) { if ( getArg(name, value) ) return true; else value = std::string(def); return false; } bool setArg (std::string name, std::string value) { bool ret = (argmap.find (name) != argmap.end ()); // std::cerr << "Setting " << name << " to: " << value << std::endl; argmap[name] = value; return(ret); } bool setArg (std::string name, int intvalue) { std::ostringstream value; value << intvalue; bool ret = (argmap.find (value.str()) != argmap.end ()); // std::cerr << "Setting " << name << " to: " << value.str() << std::endl; argmap[name] = value.str(); return(ret); } void dump (std::string & out) { std::map < std::string, std::string >::const_iterator b = argmap.begin (); std::map < std::string, std::string >::const_iterator e = argmap.end (); out = ""; while (b != e) { out += b->first + ' ' + b->second + '\n'; ++b; } } void reset() { argmap.clear(); } private: std::map < std::string, std::string > argmap; }; extern Aargh aargh; #endif // _AARG_H_ gav-0.9.1/automa/000077500000000000000000000000001423175241600135715ustar00rootroot00000000000000gav-0.9.1/automa/Automa.h000066400000000000000000000026001423175241600151660ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _AUTOMA_H_ #define _AUTOMA_H_ #include #include "State.h" #define NO_TRANSITION (0) class Automa { protected: State *_states[100]; // max 100 states int _curr; // current state index int _prev; int _size; public: Automa() { _size = 0; for ( int i = 0; i < 100; _states[i++] = NULL ); }; virtual int addState(int idx, State *state) { _states[idx] = state; return(_size++); } virtual int start() { return(0); } virtual ~Automa() { for ( int i = 0; i < 100; i++ ) if ( _states[i] ) delete(_states[i]); } }; #endif // _AUTOMA_H_ gav-0.9.1/automa/AutomaMainLoop.cpp000066400000000000000000000050761423175241600171720ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "AutomaMainLoop.h" #include "InputState.h" #include "globals.h" #include "StateMenu.h" #include "StatePlaying.h" #include "MenuItemFullScreen.h" #ifndef NONET #include "StateClient.h" #endif AutomaMainLoop::AutomaMainLoop() { _is = new InputState(); StateMenu *sm = new StateMenu(); addState(STATE_MENU, sm); _curr = STATE_MENU; StatePlaying *sp = new StatePlaying(); addState(STATE_PLAYING, sp); #ifndef NONET StateClient *sc = new StateClient(); addState(STATE_CLIENT, sc); #endif _prev = -1; } int AutomaMainLoop::transition(int retval) { if ( retval == NO_TRANSITION ) return(_curr); #if 0 switch ( _curr ) { case STATE_MENU: return STATE_PLAYING; break; case STATE_PLAYING: return STATE_MENU; break; #ifndef NONET case STATE_CLIENT: return STATE_MENU; break; #endif } #endif return retval; // _curr; } int AutomaMainLoop::start() { unsigned int prevTicks = 0; // unsigned int prevDrawn = 0; unsigned int frames = 0; unsigned int milliseconds; while ( 1 ) { int ticks = SDL_GetTicks(); if ( prevTicks == 0 ) { prevTicks = ticks; continue; } frames++; milliseconds += ticks - prevTicks; if ( milliseconds >= 1000 ) frames = milliseconds = 0; _is->getInput(); if ( _is->getF()[9] ) { std::stack s; MenuItemFullScreen().execute(s); } // execute the _curr state's code, and transact int retval = _states[_curr]->execute(_is, ticks, prevTicks, (_prev != _curr)); _prev = _curr; _curr = transition(retval); if ( (ticks - prevTicks) < configuration.mill_per_frame ) SDL_Delay(configuration.mill_per_frame - (ticks - prevTicks)); prevTicks = ticks; } return(0); } gav-0.9.1/automa/AutomaMainLoop.h000066400000000000000000000023501423175241600166270ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "Automa.h" #include "InputState.h" #include "globals.h" #ifndef _AUTOMAMAINLOOP_H_ #define _AUTOMAMAINLOOP_H_ enum { STATE_MENU = 1, // navigate menu tree STATE_PLAYING, // play the game STATE_CLIENT // start the game as a client }; class AutomaMainLoop : public Automa { private: InputState *_is; int transition(int retval); public: AutomaMainLoop(); virtual int start(); }; #endif gav-0.9.1/automa/Makefile000066400000000000000000000024341423175241600152340ustar00rootroot00000000000000# GAV - Gpl Arcade Volleyball # Copyright (C) 2002 # GAV team (http://sourceforge.net/projects/gav/) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. RELPATH = automa include ../CommonHeader NAME = automa MODULE_NAME = $(NAME)_module.o CXXFLAGS += -I$(GAV_ROOT) -I$(GAV_ROOT)/menu -I$(GAV_ROOT)/net -I$(GAV_ROOT)/automa DEPEND = Makefile.depend .PHONY: all all: $(MODULE_NAME) $(MODULE_NAME): $(OFILES) $(LD) -r $(OFILES) -o $(MODULE_NAME) ($OFILES): $(SRCS) $(CXX) -c $(CXXFLAGS) $< clean: rm -f *.o *.bin *~ $(DEPEND) depend: $(RM) $(DEPEND) $(CXX) $(CXXFLAGS) -M $(SRCS) >> $(DEPEND) ifeq ($(wildcard $(DEPEND)),$(DEPEND)) include $(DEPEND) endif gav-0.9.1/automa/Makefile.Linux000066400000000000000000000024341423175241600163320ustar00rootroot00000000000000# GAV - Gpl Arcade Volleyball # Copyright (C) 2002 # GAV team (http://sourceforge.net/projects/gav/) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. RELPATH = automa include ../CommonHeader NAME = automa MODULE_NAME = $(NAME)_module.o CXXFLAGS += -I$(GAV_ROOT) -I$(GAV_ROOT)/menu -I$(GAV_ROOT)/net -I$(GAV_ROOT)/automa DEPEND = Makefile.depend .PHONY: all all: $(MODULE_NAME) $(MODULE_NAME): $(OFILES) $(LD) -r $(OFILES) -o $(MODULE_NAME) ($OFILES): $(SRCS) $(CXX) -c $(CXXFLAGS) $< clean: rm -f *.o *.bin *~ $(DEPEND) depend: $(RM) $(DEPEND) $(CXX) $(CXXFLAGS) -M $(SRCS) >> $(DEPEND) ifeq ($(wildcard $(DEPEND)),$(DEPEND)) include $(DEPEND) endif gav-0.9.1/automa/Makefile.cross.w32000066400000000000000000000022671423175241600170020ustar00rootroot00000000000000# GAV - Gpl Arcade Volleyball # Copyright (C) 2002 # GAV team (http://sourceforge.net/projects/gav/) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. RELPATH = automa include ../CommonHeader NAME = automa CXXFLAGS += -I$(GAV_ROOT) -I$(GAV_ROOT)/menu -I$(GAV_ROOT)/net -I$(GAV_ROOT)/automa DEPEND = Makefile.depend .PHONY: all all: $(OFILES) ($OFILES): $(SRCS) $(CXX) -c $(CXXFLAGS) $< clean: rm -f *.o *.bin *~ $(DEPEND) depend: $(RM) $(DEPEND) $(CXX) $(CXXFLAGS) -M $(SRCS) >> $(DEPEND) ifeq ($(wildcard $(DEPEND)),$(DEPEND)) include $(DEPEND) endif gav-0.9.1/automa/State.h000066400000000000000000000025101423175241600150200ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _STATE_H_ #define _STATE_H_ #include #include #include "InputState.h" class State { public: std::string _name; // for debug State() {}; inline void setName(char *name) { _name = std::string(name); } inline std::string getName() { return(_name); } virtual int execute(InputState *is, unsigned int ticks, unsigned int prevticks, int firstTime) { std::cout << "unextended state: " << _name << std::endl; return(0); // NO_TRANSITION }; virtual ~State() {}; }; #endif // _STATE_H_ gav-0.9.1/automa/StateClient.cpp000066400000000000000000000145251423175241600165230ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "StateClient.h" #include "AutomaMainLoop.h" #ifndef NONET #include "NetClient.h" #endif //NONET using namespace std; int StateClient::setupConnection(InputState *is) { #ifndef NONET bool configured = false; string saddress = ""; signed char ch; string ports = ""; int port; char ti; while ( !configured ) { /* first, delete the screen... */ SDL_Rect r; r.x = r.y = 0; r.h = background->height(); r.w = background->width(); background->blit(0, screen, &r); //SDL_BlitSurface(background, &r, screen, &r); SDL_Flip(screen); /* now, ask for server address, port and team side */ cga->printRow(screen, 0, "Please type server address"); SDL_Flip(screen); while ( (ch = getKeyPressed(is)) != SDLK_RETURN ) { if ( ch == SDLK_BACKSPACE ) { saddress = deleteOneChar(saddress); // should be backspace... cga->printRow(screen, 1, " ", background); } else { char w[2]; w[0] = (char)ch; w[1] = 0; saddress = saddress + w; } cga->printRow(screen, 1, saddress.c_str(), background); SDL_Flip(screen); } char msg[100]; sprintf(msg, "Please type port number [%d]", SERVER_PORT); cga->printRow(screen, 2, msg); SDL_Flip(screen); while ( (ch = getKeyPressed(is)) != SDLK_RETURN ) { if ( ch == SDLK_BACKSPACE ) { ports = deleteOneChar(ports); // should be backspace... cga->printRow(screen, 3, " ", background); } else { char w[2]; w[0] = (char)ch; w[1] = 0; ports = ports + w; } cga->printRow(screen, 3, ports.c_str(), background); SDL_Flip(screen); } port = atoi(ports.c_str()); if ( !port ) port = SERVER_PORT; string team = ""; cga->printRow(screen, 4, "Left or right team? (l/r)"); SDL_Flip(screen); while ( (ch = getKeyPressed(is)) != SDLK_RETURN ) { if ( ch == SDLK_BACKSPACE ) { team = deleteOneChar(team); // should be backspace... cga->printRow(screen, 5, " ", background); } else { char w[2]; w[0] = (char)ch; w[1] = 0; team = team + w; } cga->printRow(screen, 5, team.c_str(), background); SDL_Flip(screen); } ti = (*(team.c_str())=='l')?NET_TEAM_LEFT:NET_TEAM_RIGHT; configured = true; } netc = new NetClient(); cga->printRow(screen, 6, "connecting..."); SDL_Flip(screen); if ( netc->ConnectToServer(is, &_lp, &_rp, ti, saddress.c_str(), port) == -1 ) { delete(netc); cga->printRow(screen, 7, "host unreachable"); SDL_Flip(screen); SDL_Delay(1000); netc = NULL; return(STATE_MENU); } cga->printRow(screen, 7, "connected. Waiting for other clients..."); SDL_Flip(screen); /* ok, I'm connected and I'm waiting for the game start */ netc->WaitGameStart(); #endif //!NONET return(0); } // executes one step of the game's main loop for a network client. // before the game loop actually begins, connection must be set up // Returns NO_TRANSITION if the game continues, the next state otherwise int StateClient::execute(InputState *is, unsigned int ticks, unsigned int prevTicks, int firstTime) { #ifndef NONET if ( firstTime ) { int ret = 0; if ( (ret = setupConnection(is)) ) return(ret); #ifdef AUDIO soundMgr->stopSound(SND_BACKGROUND_MENU); soundMgr->playSound(SND_BACKGROUND_PLAYING, true); #endif // AUDIO /* First time we change to execute state: we should probably create players here instead of in the constructor, and think of a clever way to destroy them once we're done. */ prevDrawn = ticks; tl = new Team(-1); tr = new Team(1); b = new Ball(BALL_ORIG); for ( int j = 0; j < _lp; j++ ) { string name = "Pippo-" + j; Player * pl = tl->addPlayerHuman(name.c_str(), PL_TYPE_MALE_LEFT); pl->setState(PL_STATE_STILL, true); } for ( int j = 0; j < _rp; j++ ) { string name = "Pluto-" + j; Player * pl = tr->addPlayerHuman(name.c_str(), PL_TYPE_MALE_RIGHT); pl->setState(PL_STATE_STILL, true); } tl->setScore(0); tr->setScore(0); b->resetPos((int) (configuration.SCREEN_WIDTH * 0.25), (int) (configuration.SCREEN_HEIGHT * 0.66)); } if ( is->getKeyState()[SDLK_ESCAPE] ) { delete(tl); delete(tr); delete(b); delete(netc); netc = NULL; #ifdef AUDIO soundMgr->stopSound(SND_BACKGROUND_PLAYING); #endif return(STATE_MENU); } controlsArray->setControlsState(is, tl, tr); triple_t input = controlsArray->getCommands(0); netc->SendCommand((input.left?CNTRL_LEFT:0)| (input.right?CNTRL_RIGHT:0)| (input.jump?CNTRL_JUMP:0)); while ( netc->ReceiveSnapshot(tl, tr, b, ticks - prevTicks) != -1 ); if ( (ticks - prevDrawn) > (unsigned int) (FPS - (FPS / (configuration.frame_skip + 1)) ) ) { SDL_Rect r; r.x = r.y = 0; r.h = background->height(); r.w = background->width(); //SDL_BlitSurface(background, &r, screen, &r); background->blit(0, screen, &r); tl->draw(); tr->draw(); b->draw(); SDL_Flip(screen); prevDrawn = ticks; } if ( ((tl->getScore() >= configuration.winning_score) && (tl->getScore() > (tr->getScore()+1))) || ((tr->getScore() >= configuration.winning_score) && (tr->getScore() > (tl->getScore()+1))) ) { /* Deallocate teams, ball and players */ delete(tl); delete(tr); delete(b); delete(netc); netc = NULL; #ifdef AUDIO soundMgr->stopSound(SND_BACKGROUND_PLAYING); #endif return(STATE_MENU); // end of the game } #endif // !NONET return(NO_TRANSITION); } gav-0.9.1/automa/StateClient.h000066400000000000000000000025261423175241600161660ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _STATECLIENT_H_ #define _STATECLIENT_H_ #include "State.h" #include "StateWithInput.h" #include "InputState.h" #include "Team.h" #include "Ball.h" class StateClient : public State, public StateWithInput { private: Team *tl, *tr; // team left and team right Ball *b; unsigned int prevDrawn; int _lp, _rp; public: StateClient() : prevDrawn(0) {} virtual int execute(InputState *is, unsigned int ticks, unsigned int prevTicks, int firstTime); private: int setupConnection(InputState *is); }; #endif // _STATEPLAYING_H_ gav-0.9.1/automa/StateMenu.h000066400000000000000000000036471423175241600156610ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __STATEMENU_H__ #define __STATEMENU_H__ #include #include "globals.h" #include "State.h" #include "Automa.h" #include "MenuRoot.h" #include "Menu.h" #include "MenuItem.h" #include "MenuItemSubMenu.h" #include "MenuItemPlay.h" #include "MenuItemExit.h" #include "MenuItemNotImplemented.h" #include "SoundMgr.h" class StateMenu : public State { private: MenuRoot *_mr; public: StateMenu() { _mr = mroot; }; int execute(InputState *is, unsigned int ticks, unsigned int prevTicks, int firstTime) { static int lastExec = ticks; #ifdef AUDIO if ( firstTime ) soundMgr->playSound(SND_BACKGROUND_MENU, true); #endif // AUDIO if ( (ticks - lastExec) > 50 ) { SDL_Rect r; r.x = r.y = 0; r.h = background->height(); r.w = background->width(); background->blit(0, screen, &r); //SDL_BlitSurface(background, &r, screen, &r); int ret = _mr->execute(is); SDL_Flip(screen); lastExec = ticks; return(ret); } if ( is->getF()[0] ) { return(NO_TRANSITION + 1); } return(NO_TRANSITION); } }; #endif // __STATEMENU_H__ gav-0.9.1/automa/StatePlaying.cpp000066400000000000000000000147711423175241600167130ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "StatePlaying.h" #include "Automa.h" #include "AutomaMainLoop.h" #ifndef NONET #include "NetServer.h" #endif #include "StateWithInput.h" using namespace std; int StatePlaying::setupConnection(InputState *is) { #ifndef NONET std::string clinumb = ""; int nclients = 0; signed char ch; //nets = new NetServer(); /* first, delete the screen... */ SDL_Rect r; r.x = r.y = 0; r.h = background->height(); r.w = background->width(); //SDL_BlitSurface(background, &r, screen, &r); background->blit(0, screen, &r); SDL_Flip(screen); /* now, ask for the port to listen on */ char msg[100]; string ports = ""; int port; sprintf(msg, "What port to listen on? [%d]", SERVER_PORT); cga->printRow(screen, 0, msg); SDL_Flip(screen); while ( (ch = getKeyPressed(is)) != SDLK_RETURN ) { if ( ch == SDLK_BACKSPACE ) { ports = deleteOneChar(ports); // should be backspace... cga->printRow(screen, 1, " ", background); } else { char w[2]; w[0] = (char)ch; w[1] = 0; ports = ports + w; } cga->printRow(screen, 1, ports.c_str(), background); SDL_Flip(screen); } port = atoi(ports.c_str()); if ( !port ) port = SERVER_PORT; cga->printRow(screen, 2, "How many clients to wait? [1]"); SDL_Flip(screen); while ( (ch = getKeyPressed(is)) != SDLK_RETURN ) { if ( ch == SDLK_BACKSPACE ) { clinumb = deleteOneChar(clinumb); // should be backspace... cga->printRow(screen, 3, " ", background); } else { char w[2]; w[0] = (char)ch; w[1] = 0; clinumb = clinumb + w; } cga->printRow(screen, 3, clinumb.c_str(), background); SDL_Flip(screen); } nclients = atoi(clinumb.c_str()); if ( !nclients ) nclients = 1; nets->StartServer(port); cga->printRow(screen, 4, "Server OK. Waiting for clients...", background); SDL_Flip(screen); int remaining = nclients; do { remaining = nets->WaitClients(is, remaining); char msg[100]; sprintf(msg, " %d connection(s) to go ", remaining); cga->printRow(screen, 5, msg, background); SDL_Flip(screen); } while ( remaining > 0 ); return remaining; #else //!NONET return 0; #endif } // executes one step of the game's main loop // Returns NO_TRANSITION if the game continues, the next state otherwise int StatePlaying::execute(InputState *is, unsigned int ticks, unsigned int prevTicks, int firstTime) { if ( firstTime ) { #ifndef NONET if ( nets ) { if (setupConnection(is) < 0) { delete(nets); nets = NULL; return(STATE_MENU); } } #endif #ifdef AUDIO soundMgr->stopSound(SND_BACKGROUND_MENU); soundMgr->playSound(SND_BACKGROUND_PLAYING, true); #endif /* First time we change to execute state: we should probably create players here instead of in the constructor, and think of a clever way to destroy them once we're done. */ prevDrawn = ticks; tl = new Team(-1); tr = new Team(1); b = new Ball(BALL_ORIG); for ( int i = 0, j = 0; i < configuration.left_nplayers; j++ ) { if ( configuration.left_players[j] == PLAYER_NONE ) { continue; } string name = "Pippo-" + j; if ( configuration.left_players[j] == PLAYER_HUMAN ) { tl->addPlayerHuman(name.c_str(), PL_TYPE_MALE_LEFT); } else { #ifndef NONET if (!nets || !(nets->isRemote(j*2))) #endif tl->addPlayerAI(name.c_str(), PL_TYPE_MALE_LEFT, b); #ifndef NONET else tl->addPlayerRemote(name.c_str(), PL_TYPE_MALE_LEFT); #endif } i++; } for ( int i = 0, j = 0; i < configuration.right_nplayers; j++ ) { if ( configuration.right_players[j] == PLAYER_NONE ) { continue; } string name = "Pluto-" + j; if ( configuration.right_players[j] == PLAYER_HUMAN ) { tr->addPlayerHuman(name.c_str(), PL_TYPE_MALE_RIGHT); } else { #ifndef NONET if (!nets || !(nets->isRemote(j*2+1))) #endif tr->addPlayerAI(name.c_str(), PL_TYPE_MALE_RIGHT, b); #ifndef NONET else tr->addPlayerRemote(name.c_str(), PL_TYPE_MALE_RIGHT); #endif } i++; } tl->setScore(0); tr->setScore(0); b->resetPos((int) (configuration.SCREEN_WIDTH * 0.25), (int) (configuration.SCREEN_HEIGHT * 0.66)); } controlsArray->setControlsState(is, tl, tr); if ( is->getKeyState()[SDLK_ESCAPE] ) { delete(tl); delete(tr); delete(b); #ifndef NONET if ( nets ) { delete(nets); nets = NULL; } #endif #ifdef AUDIO soundMgr->stopSound(SND_BACKGROUND_PLAYING); #endif return(STATE_MENU); } tl->update(ticks - prevTicks, controlsArray); tr->update(ticks - prevTicks, controlsArray); b->update(ticks - prevTicks, tl, tr); if ( (ticks - prevDrawn) > (unsigned int) (FPS - (FPS / (configuration.frame_skip + 1)) ) ) { SDL_Rect r; r.x = r.y = 0; r.h = background->height(); r.w = background->width(); //SDL_BlitSurface(background, &r, screen, &r); background->blit(0, screen, &r); tl->draw(); tr->draw(); b->draw(); #ifndef NONET if (nets) nets->SendSnapshot(tl, tr, b); #endif SDL_Flip(screen); prevDrawn = ticks; } if ( ((tl->getScore() >= configuration.winning_score) && (tl->getScore() > (tr->getScore()+1))) || ((tr->getScore() >= configuration.winning_score) && (tr->getScore() > (tl->getScore()+1))) ) { #ifdef AUDIO soundMgr->playSound(SND_VICTORY); #endif // AUDIO /* Deallocate teams, ball and players */ delete(tl); delete(tr); delete(b); #ifndef NONET if ( nets ) { delete(nets); nets = NULL; } #endif #ifdef AUDIO soundMgr->stopSound(SND_BACKGROUND_PLAYING); #endif return(STATE_MENU); // end of game } return(NO_TRANSITION); } gav-0.9.1/automa/StatePlaying.h000066400000000000000000000025101423175241600163440ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _STATEPLAYING_H_ #define _STATEPLAYING_H_ #include "State.h" #include "InputState.h" #include "Team.h" #include "Ball.h" #include "StateWithInput.h" class StatePlaying : public State, public StateWithInput { private: Team *tl, *tr; // team left and team right Ball *b; unsigned int prevDrawn; public: StatePlaying() : prevDrawn(0) {} virtual int execute(InputState *is, unsigned int ticks, unsigned int prevTicks, int firstTime); private: int setupConnection(InputState *is); }; #endif // _STATEPLAYING_H_ gav-0.9.1/automa/StateWithInput.h000066400000000000000000000037461423175241600167100ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __STATENET_H__ #define __STATENET_H__ #include #include "AutomaMainLoop.h" #include class StateWithInput { public: StateWithInput() {} std::string deleteOneChar(std::string s) { char *s2; std::string ret; if ( s.length() < 1 ) return(s); s2 = (char*)alloca(s.length()*sizeof(char)); strncpy(s2, s.c_str(), s.length() - 1); s2[s.length() - 1] = 0; ret = std::string(s2); return(ret); } short getKeyPressed(InputState *is, bool blocking = true) { SDL_keysym keysym; SDL_Event event; while ( 1 ) { if (!blocking && (!SDL_PollEvent(NULL))) return -1; if ( (event = is->getEventWaiting()).type != SDL_KEYDOWN ) { continue; } keysym = event.key.keysym; while ( is->getEventWaiting().type != SDL_KEYUP ); char *kn = SDL_GetKeyName(keysym.sym); // printf("\"%s\"\n", kn); if ( strlen(kn) == 1 ) return((signed char)(*kn)); else if ( !strcmp(kn, "return") ) return(SDLK_RETURN); else if ( !strcmp(kn, "backspace") ) return(SDLK_BACKSPACE); else if ( !strcmp(kn, "escape") ) return(SDLK_ESCAPE); else continue; } return -1; } }; #endif gav-0.9.1/build_linux.sh000077500000000000000000000002271423175241600151610ustar00rootroot00000000000000make clean cp Makefile.Linux Makefile cp automa/Makefile.Linux automa/Makefile cp menu/Makefile.Linux menu/Makefile cp net/Makefile.Linux net/Makefile gav-0.9.1/build_osx.sh000077500000000000000000000002441423175241600146320ustar00rootroot00000000000000rm -rf gav.app mkdir -p gav.app/Contents/MacOS cp gav gav.app/Contents/MacOS echo "APPL????" >gav.app/Contents/PkgInfo cp osx-info.plist gav.app/Contents/Info.plistgav-0.9.1/build_win32.sh000077500000000000000000000002471423175241600147660ustar00rootroot00000000000000make clean cp Makefile.cross.w32 Makefile cp automa/Makefile.cross.w32 automa/Makefile cp menu/Makefile.cross.w32 menu/Makefile cp net/Makefile.cross.w32 net/Makefile gav-0.9.1/globals.cpp000066400000000000000000000021221423175241600144270ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Global data */ #include "globals.h" SDL_Surface *screen; FrameSeq *background; ScreenFont *cga, *cgaInv; int screenFlags = 0; const SDL_VideoInfo *videoinfo; MenuRoot *mroot; ControlsArray *controlsArray = NULL; #ifndef NONET NetServer * nets = NULL; NetClient * netc = NULL; #endif gav-0.9.1/globals.h000066400000000000000000000044411423175241600141020ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _GLOBALS_H_ #define _GLOBALS_H_ #include #include "Configuration.h" #define FPS (50) class MenuRoot; class ControlsArray; class FrameSeq; class ScreenFont; extern SDL_Surface *screen; extern FrameSeq *background; extern ScreenFont *cga, *cgaInv; extern int screenFlags; extern const SDL_VideoInfo *videoinfo; extern ControlsArray *controlsArray; extern MenuRoot *mroot; extern Configuration configuration; class GameRenderer; extern GameRenderer *gameRenderer; #ifndef NONET class NetClient; class NetServer; #endif class SoundMgr; #ifndef NONET extern NetServer * nets; extern NetClient * netc; #endif extern SoundMgr * soundMgr; #ifdef AUDIO extern SDL_AudioSpec desired,obtained; typedef struct sound_s { Uint8 *samples; Uint32 length; } sound_t, *sound_p; typedef struct playing_s { int active; sound_p sound; Uint32 position; bool loop; } playing_t, *playing_p; #define MAX_PLAYING_SOUNDS 10 extern playing_t playing [MAX_PLAYING_SOUNDS]; #define VOLUME_PER_SOUND SDL_MIX_MAXVOLUME / 2 /* this should be synchronized with char *sound_fnames[] in SoundMgr.cpp */ enum { SND_BOUNCE = 0, SND_MENU_SELECT, SND_MENU_ACTIVATE, SND_SCORE, SND_VICTORY, SND_PARTIALNET, SND_FULLNET, SND_SERVICECHANGE, SND_PLAYERHIT, SND_BACKGROUND_PLAYING, SND_BACKGROUND_MENU // last item is used in SoundMgr.cpp as a limit }; #endif //AUDIO typedef struct { Uint8 left; Uint8 right; Uint8 jump; } triple_t; #define MAXPATHLENGTH (1024) #endif // _GLOBALS_H_ gav-0.9.1/main.cpp000066400000000000000000000156421423175241600137430ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include #include //#include #include #include "globals.h" #include "ScreenFont.h" #include "AutomaMainLoop.h" #include "StatePlaying.h" #include "StateMenu.h" #include "MenuRoot.h" #include "Menu.h" #include "MenuItem.h" #include "MenuItemSubMenu.h" #include "MenuItemPlay.h" #include "MenuItemExit.h" #include "MenuItemPlayer.h" #include "MenuItemSound.h" #include "MenuItemNotImplemented.h" #include "MenuItemNotCompiled.h" #include "MenuKeys.h" #include "MenuItemBack.h" #include "MenuItemTheme.h" #include "MenuItemFullScreen.h" #include "MenuItemFrameSkip.h" #include "MenuItemFPS.h" #include "MenuItemScore.h" #include "MenuItemMonitor.h" #include "MenuItemBigBackground.h" #include "MenuItemBallSpeed.h" #include "MenuItemSave.h" #include "MenuItemJoystick.h" #ifndef NONET #include "MenuItemClient.h" #include "MenuItemServer.h" #endif #include "Theme.h" #include "Sound.h" #ifndef NONET #include "NetClient.h" #include "NetServer.h" #endif #define BPP 16 using namespace std; #ifdef AUDIO SDL_AudioSpec desired,obtained; SoundMgr * soundMgr = NULL; playing_t playing[MAX_PLAYING_SOUNDS]; void AudioCallBack(void *user_data,Uint8 *audio,int length) { int i; //memset(audio,0 , length); if (!configuration.sound) return; for(i=0; i samples; sound_buf += playing[i].position; if((playing[i].position +length)>playing[i].sound->length){ sound_len = playing[i].sound->length - playing[i].position; } else { sound_len=length; } SDL_MixAudio(audio,sound_buf,sound_len,VOLUME_PER_SOUND); playing[i].position+=length; if(playing[i].position>=playing[i].sound->length){ if (!playing[i].loop) playing[i].active=0; else playing[i].position = 0; } } } } void initJoysticks() { for ( int i = 0; i < SDL_NumJoysticks(); i++ ) { } } void ClearPlayingSounds(void) { int i; for(i=0;i 0) && (resy >0) ) configuration.setDesiredResolution(resx, resy); } int main(int argc, char *argv[]) { parseArgs(argc, argv); init(); #ifdef AUDIO #if 0 Prova = new Sound("rocket.wav"); Prova->playSound(); #endif #endif /* initialize menus */ Menu m; MenuItemPlay miplay; MenuItemExit miexit; Menu *menuExtra = new Menu(); Menu *menuThemes = new Menu(); Menu *menuJoystick = new Menu(); #ifndef NONET Menu *menuNetwork = new Menu(); #endif MenuItemBack *mib = new MenuItemBack("back"); DIR *dir; if ((dir = opendir(ThemeDir.c_str())) == NULL) { std::cerr << "Cannot find themes directory\n"; exit(0); } struct dirent *themeDir; do { themeDir = readdir(dir); if ( themeDir && (themeDir->d_name[0] != '.') ) menuThemes->add(new MenuItemTheme(string(themeDir->d_name))); } while (themeDir); closedir(dir); menuThemes->add(mib); #ifndef NONET menuNetwork->add(new MenuItemServer()); menuNetwork->add(new MenuItemClient()); menuNetwork->add(mib); #endif menuExtra->add(new MenuItemSubMenu(menuThemes, string("Theme"))); #ifndef NONET menuExtra->add(new MenuItemSubMenu(menuNetwork, string("Network game"))); #endif menuExtra->add(new MenuItemPlayer(TEAM_LEFT, 1)); menuExtra->add(new MenuItemPlayer(TEAM_RIGHT, 1)); menuExtra->add(new MenuItemSubMenu(new MenuKeys(1), string("Define Keys"))); menuExtra->add(new MenuItemFPS()); menuExtra->add(new MenuItemFrameSkip()); menuExtra->add(new MenuItemScore()); menuExtra->add(new MenuItemMonitor()); menuExtra->add(new MenuItemBallSpeed()); menuExtra->add(new MenuItemBigBackground()); menuExtra->add(new MenuItemFullScreen()); menuExtra->add(new MenuItemSave()); menuExtra->add(mib); for (int plId = 0; plId < MAX_PLAYERS; plId++ ) { menuJoystick->add(new MenuItemJoystick(plId, -1)); } menuJoystick->add(mib); m.add(&miplay); m.add(new MenuItemPlayer(TEAM_LEFT, 0)); m.add(new MenuItemPlayer(TEAM_RIGHT, 0)); #ifdef AUDIO m.add(new MenuItemSound()); #else // AUDIO m.add(new MenuItemNotCompiled(string("Sound: Off"))); #endif // AUDIO m.add(new MenuItemSubMenu(new MenuKeys(0), string("Define Keys"))); m.add(new MenuItemSubMenu(menuJoystick, string("Set Joystick"))); m.add(new MenuItemSubMenu(menuExtra, string("Extra"))); m.add(&miexit); mroot = new MenuRoot(); mroot->add(&m); AutomaMainLoop *a = new AutomaMainLoop(); a->start(); return 0; } gav-0.9.1/menu/000077500000000000000000000000001423175241600132475ustar00rootroot00000000000000gav-0.9.1/menu/Makefile000066400000000000000000000023361423175241600147130ustar00rootroot00000000000000# GAV - Gpl Arcade Volleyball # Copyright (C) 2002 # GAV team (http://sourceforge.net/projects/gav/) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. RELPATH = menu include ../CommonHeader NAME = menu MODULE_NAME = $(NAME)_module.o CXXFLAGS += -I$(GAV_ROOT) DEPEND = Makefile.depend .PHONY: all all: $(MODULE_NAME) $(MODULE_NAME): $(OFILES) $(LD) -r $(OFILES) -o $(MODULE_NAME) ($OFILES): $(SRCS) $(CXX) -c $(CXXFLAGS) $< clean: rm -f *.o *.bin *~ $(DEPEND) depend: $(RM) $(DEPEND) $(CXX) $(CXXFLAGS) -M $(SRCS) >> $(DEPEND) ifeq ($(wildcard $(DEPEND)),$(DEPEND)) include $(DEPEND) endif gav-0.9.1/menu/Makefile.Linux000066400000000000000000000023361423175241600160110ustar00rootroot00000000000000# GAV - Gpl Arcade Volleyball # Copyright (C) 2002 # GAV team (http://sourceforge.net/projects/gav/) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. RELPATH = menu include ../CommonHeader NAME = menu MODULE_NAME = $(NAME)_module.o CXXFLAGS += -I$(GAV_ROOT) DEPEND = Makefile.depend .PHONY: all all: $(MODULE_NAME) $(MODULE_NAME): $(OFILES) $(LD) -r $(OFILES) -o $(MODULE_NAME) ($OFILES): $(SRCS) $(CXX) -c $(CXXFLAGS) $< clean: rm -f *.o *.bin *~ $(DEPEND) depend: $(RM) $(DEPEND) $(CXX) $(CXXFLAGS) -M $(SRCS) >> $(DEPEND) ifeq ($(wildcard $(DEPEND)),$(DEPEND)) include $(DEPEND) endif gav-0.9.1/menu/Makefile.cross.w32000066400000000000000000000021711423175241600164520ustar00rootroot00000000000000# GAV - Gpl Arcade Volleyball # Copyright (C) 2002 # GAV team (http://sourceforge.net/projects/gav/) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. RELPATH = menu include ../CommonHeader NAME = menu CXXFLAGS += -I$(GAV_ROOT) DEPEND = Makefile.depend .PHONY: all all: $(OFILES) ($OFILES): $(SRCS) $(CXX) -c $(CXXFLAGS) $< clean: rm -f *.o *.bin *~ $(DEPEND) depend: $(RM) $(DEPEND) $(CXX) $(CXXFLAGS) -M $(SRCS) >> $(DEPEND) ifeq ($(wildcard $(DEPEND)),$(DEPEND)) include $(DEPEND) endif gav-0.9.1/menu/Menu.cpp000066400000000000000000000042511423175241600146610ustar00rootroot00000000000000#include "Menu.h" #include #include "SoundMgr.h" using namespace std; void Menu::add(MenuItem * mi) { if (currentItem < 0) currentItem = 0; if ((mi->getLabel()).length() > maxLabelLength) maxLabelLength = (mi->getLabel()).length(); items.push_back(mi); } int Menu::execute(InputState *is, std::stack &s) { SDL_Rect rect; const char * label; ScreenFont * font; static bool spacePressed = false; static bool PrevUp = false; static bool PrevDown = false; // Up if (is->getKeyState()[SDLK_UP]) { if (!PrevUp) { if (currentItem > 0) { currentItem--; #ifdef AUDIO soundMgr->playSound (SND_MENU_SELECT); #endif } else { currentItem=(int)(items.size()-1); #ifdef AUDIO soundMgr->playSound (SND_MENU_SELECT); #endif } PrevUp = true; } } else PrevUp =false; // Down if (is->getKeyState()[SDLK_DOWN]) { if (!PrevDown) { if (currentItem < (int)(items.size()-1)) { currentItem++; #ifdef AUDIO soundMgr->playSound (SND_MENU_SELECT); #endif } else { currentItem=0; #ifdef AUDIO soundMgr->playSound (SND_MENU_SELECT); #endif } PrevDown = true; } } else PrevDown = false; // draw menu items labels rect.y = configuration.CEILING + configuration.env.h/100; for ( unsigned int it = 0; it < items.size(); it++ ) { std::string slabel = items[it]->getLabel(); label = slabel.c_str(); rect.x = (configuration.env.w / 2) - strlen(label)*(cga->charWidth())/2; // UGLY if (it == (unsigned int) currentItem) font = cgaInv; else font = cga; font->printXY(screen, &rect, items[it]->getLabel().c_str()); rect.y += font->charHeight(); } // call the execute method of the current item, if an event occurred if ( (is->getKeyState()[SDLK_SPACE]) || (is->getKeyState()[SDLK_RETURN]) ) { spacePressed = true; } if ( spacePressed && !(is->getKeyState()[SDLK_SPACE]) && !(is->getKeyState()[SDLK_RETURN]) ) { spacePressed = false; #ifdef AUDIO soundMgr->playSound(SND_MENU_ACTIVATE); #endif // AUDIO return items[currentItem]->execute(s); } return 0; } gav-0.9.1/menu/Menu.h000066400000000000000000000023351423175241600143270ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENU_H__ #define __MENU_H__ #include #include #include "MenuItem.h" #include "ScreenFont.h" #include "InputState.h" class Menu { std::vector items; int currentItem; unsigned int maxLabelLength; public: Menu(): currentItem(-1), maxLabelLength(0) {} virtual void add(MenuItem * mi); virtual int execute(InputState *is, std::stack &s); virtual ~Menu() {} }; #endif gav-0.9.1/menu/MenuItem.h000066400000000000000000000022261423175241600151450ustar00rootroot00000000000000/* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEM_H__ #define __MENUITEM_H__ #include #include #include "InputState.h" class Menu; class MenuItem { protected: std::string label; public: MenuItem() {} inline void setLabel(std::string l) {label = l;} virtual std::string getLabel() {return label;} virtual int execute(std::stack &s) = 0; virtual ~MenuItem() {} }; #endif gav-0.9.1/menu/MenuItemBack.h000066400000000000000000000021241423175241600157230ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMBACK_H__ #define __MENUITEMBACK_H__ #include #include "MenuItem.h" #include "globals.h" class MenuItemBack: public MenuItem { public: MenuItemBack(std::string l) { label = l; } int execute(std::stack &s) { s.pop(); return(0); } }; #endif gav-0.9.1/menu/MenuItemBallSpeed.h000066400000000000000000000033201423175241600167150ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMBALLSPEED_H__ #define __MENUITEMBALLSPEED_H__ #include #include "MenuItem.h" #include "globals.h" #define BALL_SPEED_ITEMS 3 class MenuItemBallSpeed: public MenuItem { char * _item[BALL_SPEED_ITEMS]; int _currItem; public: MenuItemBallSpeed() { if (configuration.ballAmplify == DEFAULT_BALL_AMPLIFY) _currItem = 0; else if ( configuration.ballAmplify == DEFAULT_BALL_AMPLIFY + BALL_SPEED_INC ) _currItem = 1; else _currItem = 2; _item[0] = "Normal"; _item[1] = "Fast"; _item[2] = "Too Fast!"; setLabel(); } void setLabel() { label = std::string("Ball Speed: ") + std::string(_item[_currItem]); } int execute(std::stack &s) { _currItem = (_currItem + 1) % BALL_SPEED_ITEMS; configuration.ballAmplify = DEFAULT_BALL_AMPLIFY + BALL_SPEED_INC * _currItem; setLabel(); return(0); } }; #endif gav-0.9.1/menu/MenuItemBigBackground.h000066400000000000000000000034011423175241600175630ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMBIGBACKGROUND_H__ #define __MENUITEMBIGBACKGROUND_H__ #include #include #include "MenuItem.h" #include "globals.h" class MenuItemBigBackground: public MenuItem { public: MenuItemBigBackground() { label = std::string("Big Background: ") + (configuration.bgBig?"Yes":"No"); } int execute(std::stack &s) { const char * currThemeName; configuration.bgBig = !configuration.bgBig; label = std::string(configuration.bgBig?"Big Background: Yes":"Big Background: No"); currThemeName = CurrentTheme->name(); try { delete(CurrentTheme); CurrentTheme = new Theme(currThemeName); } catch (Theme::ThemeErrorException te) { std::cerr << te.message << std::endl; configuration.bgBig = !configuration.bgBig; label = std::string(configuration.bgBig?"Big Background: Yes":"Big Background: No"); CurrentTheme = new Theme(currThemeName); } return(0); } }; #endif gav-0.9.1/menu/MenuItemClient.h000066400000000000000000000021201423175241600162750ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMCLIENT_H__ #define __MENUITEMCLIENT_H__ #include "MenuItem.h" #include "AutomaMainLoop.h" class MenuItemClient: public MenuItem { public: MenuItemClient() {label = (std::string)"Start as client";} int execute(std::stack &s) { return STATE_CLIENT; } }; #endif gav-0.9.1/menu/MenuItemExit.h000066400000000000000000000020471423175241600160000ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMEXIT_H__ #define __MENUITEMEXIT_H__ #include "MenuItem.h" #include class MenuItemExit: public MenuItem { public: MenuItemExit() {label = (std::string)"Exit";} int execute(std::stack &s) {exit(0);} }; #endif gav-0.9.1/menu/MenuItemFPS.h000066400000000000000000000024321423175241600155150ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMFPS_H__ #define __MENUITEMFPS_H__ #include #include "MenuItem.h" #include "globals.h" class MenuItemFPS: public MenuItem { public: MenuItemFPS() { setLabel(); } void setLabel() { char fs[10]; sprintf(fs, "%d", configuration.fps); label = std::string("Frames per second: ") + std::string(fs); } int execute(std::stack &s) { configuration.setFps((configuration.fps % 100) + 10); setLabel(); return(0); } }; #endif gav-0.9.1/menu/MenuItemFrameSkip.h000066400000000000000000000024771423175241600167570ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMFRAMESKIP_H__ #define __MENUITEMFRAMESKIP_H__ #include #include "MenuItem.h" #include "globals.h" class MenuItemFrameSkip: public MenuItem { public: MenuItemFrameSkip() { setLabel(); } void setLabel() { char fs[10]; sprintf(fs, "%d", configuration.frame_skip); label = std::string("Frameskip: ") + std::string(fs); } int execute(std::stack &s) { configuration.frame_skip = (configuration.frame_skip + 1)%10; setLabel(); return(0); } }; #endif gav-0.9.1/menu/MenuItemFullScreen.h000066400000000000000000000032001423175241600171210ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMFULLSCREEN_H__ #define __MENUITEMFULLSCREEN_H__ #include #include "MenuItem.h" #include "globals.h" class MenuItemFullScreen: public MenuItem { public: MenuItemFullScreen() { } std::string getLabel() { return configuration.fullscreen?"Fullscreen: Yes":"Fullscreen: No"; } void apply() { if ( configuration.fullscreen ) screenFlags |= SDL_FULLSCREEN; else screenFlags = (screenFlags & ~SDL_FULLSCREEN); } int execute(std::stack &s) { SDL_FreeSurface(screen); configuration.fullscreen = !configuration.fullscreen; apply(); screen = SDL_SetVideoMode(configuration.resolution.x, // SCREEN_HEIGHT(), BPP, screenFlags); configuration.resolution.y, videoinfo->vfmt->BitsPerPixel, screenFlags); return(0); } }; #endif gav-0.9.1/menu/MenuItemJoystick.h000066400000000000000000000032651423175241600166710ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMJOYSTICK_H__ #define __MENUITEMJOYSTICK_H__ #include #include "MenuItem.h" #include "globals.h" class MenuItemJoystick: public MenuItem { int _joyId; int _plId; char nstr[10]; public: MenuItemJoystick(int plId, int init) { _joyId = init; _plId = plId; setLabel(); } void setLabel() { label = "Player "; sprintf(nstr, "%d", _plId/2 + 1); label += std::string(nstr); if ( _plId % 2 ) label += " right: "; else label += " left: "; if ( _joyId == -1 ) label += "Not Present"; else { sprintf(nstr, "%d", _joyId); label += "Joystick " + std::string(nstr); } } int execute(std::stack &s) { _joyId = (_joyId+1+1)%(controlsArray->getNJoysticks()+1) - 1; controlsArray->assignJoystick(_plId, _joyId); setLabel(); return(0); } }; #endif // __MENUITEMJOYSTICK_H__ gav-0.9.1/menu/MenuItemMonitor.h000066400000000000000000000035061423175241600165170ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMMONITOR_H__ #define __MENUITEMMONITOR_H__ #include #include "MenuItem.h" #include "globals.h" class MenuItemMonitor: public MenuItem { public: MenuItemMonitor() { setLabel(); } void setLabel() { std::string monitor; switch ( configuration.monitor_type ) { case MONITOR_NORMAL: monitor = "Normal"; break; case MONITOR_OLD: monitor = "Old"; break; case MONITOR_VERYOLD: monitor = "Very old"; break; case MONITOR_VERYVERYOLD: monitor = "Very, very old"; break; } label = std::string("Monitor Type: ") + monitor; } void apply() { if ( !configuration.monitor_type ) SDL_SetAlpha(background->surface(), 0, 0); else SDL_SetAlpha(background->surface(), SDL_SRCALPHA | SDL_RLEACCEL, 128 - (configuration.monitor_type * 30)); } int execute(std::stack &s) { configuration.monitor_type = (configuration.monitor_type + 1)%4; apply(); setLabel(); return(0); } }; #endif gav-0.9.1/menu/MenuItemNotCompiled.h000066400000000000000000000025521423175241600173050ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMNOTCOMPILED_H__ #define __MENUITEMNOTCOMPILED_H__ #include #include "MenuItem.h" #include "globals.h" class MenuItemNotCompiled: public MenuItem { std::string msg; public: MenuItemNotCompiled(std::string l) { label = l; msg = (std::string)"Functionality not compiled"; } int execute(std::stack &s) { SDL_Rect r; r.x = (screen->w / 2) - msg.length()*(cga->charWidth())/2; r.y = screen->h * 2/3; cga->printXY(screen, &r, msg.c_str()); SDL_Flip(screen); SDL_Delay(1000); return(0); } }; #endif gav-0.9.1/menu/MenuItemNotImplemented.h000066400000000000000000000025711423175241600200150ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMNOTIMPLEMENTED_H__ #define __MENUITEMNOTIMPLEMENTED_H__ #include #include "MenuItem.h" #include "globals.h" class MenuItemNotImplemented: public MenuItem { std::string msg; public: MenuItemNotImplemented(std::string l) { label = l; msg = (std::string)"Menu Item Not Yet Implemented"; } int execute(std::stack &s) { SDL_Rect r; r.x = (screen->w / 2) - msg.length()*(cga->charWidth())/2; r.y = screen->h * 2/3; cga->printXY(screen, &r, msg.c_str()); SDL_Flip(screen); SDL_Delay(1000); return(0); } }; #endif gav-0.9.1/menu/MenuItemPlay.h000066400000000000000000000020741423175241600157740ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMPLAY_H__ #define __MENUITEMPLAY_H__ #include "MenuItem.h" #include "AutomaMainLoop.h" class MenuItemPlay: public MenuItem { public: MenuItemPlay() {label = (std::string)"Play";} int execute(std::stack &s) {return STATE_PLAYING;} }; #endif gav-0.9.1/menu/MenuItemPlayer.h000066400000000000000000000046771423175241600163360ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMPLAYER_H__ #define __MENUITEMPLAYER_H__ #include #include #include "MenuItem.h" #include "globals.h" enum { TEAM_LEFT = 0, TEAM_RIGHT}; class MenuItemPlayer: public MenuItem { private: std::string prefix; int team; int index; public: MenuItemPlayer(int tm, int idx) { team = tm; index = idx; char numb[10]; sprintf(numb, "%d", idx*2 + tm + 1); prefix = std::string("Player ") + std::string(numb) + std::string(": "); resetLabel(); } void resetLabel() { int *src = (team == TEAM_LEFT)?configuration.left_players:configuration.right_players; std::string postfix = std::string(""); switch ( src[index] ) { case PLAYER_NONE: postfix = std::string("None"); break; case PLAYER_COMPUTER: postfix = std::string("Computer / Net"); break; case PLAYER_HUMAN: postfix = std::string("Keyboard / Joy"); break; } label = prefix + postfix; } int execute(std::stack &s) { int *src = (team == TEAM_LEFT)?configuration.left_players:configuration.right_players; switch ( src[index] ) { case PLAYER_NONE: src[index] = PLAYER_HUMAN; if ( team == TEAM_LEFT ) configuration.left_nplayers++; else configuration.right_nplayers++; break; case PLAYER_HUMAN: src[index] = PLAYER_COMPUTER; break; case PLAYER_COMPUTER: if ( index ) { src[index] = PLAYER_NONE; if ( team == TEAM_LEFT ) configuration.left_nplayers--; else configuration.right_nplayers--; } else src[index] = PLAYER_HUMAN; break; } resetLabel(); return(0); } }; #endif gav-0.9.1/menu/MenuItemSave.h000066400000000000000000000026771423175241600157760ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMSAVE_H__ #define __MENUITEMSAVE_H__ #include #include #include "MenuItem.h" #include "globals.h" class MenuItemSave: public MenuItem { public: MenuItemSave() { label = std::string("Save Preferences"); } int execute(std::stack &s) { std::string msg = "Configuration saved."; if ( configuration.createConfigurationFile() == -1 ) msg = "Could not save configuration"; SDL_Rect r; r.x = (screen->w / 2) - msg.length()*(cga->charWidth())/2; r.y = screen->h * 2/3; cga->printXY(screen, &r, msg.c_str()); SDL_Flip(screen); SDL_Delay(1000); return(0); } }; #endif gav-0.9.1/menu/MenuItemScore.h000066400000000000000000000024211423175241600161360ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMSCORE_H__ #define __MENUITEMSCORE_H__ #include #include "MenuItem.h" #include "globals.h" class MenuItemScore: public MenuItem { public: MenuItemScore() { setLabel(); } void setLabel() { label = "Winning Score: " + configuration.toString(configuration.winning_score); } int execute(std::stack &s) { configuration.winning_score = (configuration.winning_score%50)+5; setLabel(); return(0); } }; #endif gav-0.9.1/menu/MenuItemServer.h000066400000000000000000000022641423175241600163360ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMSERVER_H__ #define __MENUITEMSERVER_H__ #include "MenuItem.h" #include "AutomaMainLoop.h" #ifndef NONET #include "NetServer.h" #endif class MenuItemServer: public MenuItem { public: MenuItemServer() {label = (std::string)"Start as server";} int execute(std::stack &s) { #ifndef NONET nets = new NetServer(); #endif return STATE_PLAYING; } }; #endif gav-0.9.1/menu/MenuItemSound.h000066400000000000000000000024061423175241600161560ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMSOUND_H__ #define __MENUITEMSOUND_H__ #include #include "MenuItem.h" #include "globals.h" class MenuItemSound: public MenuItem { public: MenuItemSound() { label = std::string(configuration.sound?"Sound: On":"Sound: Off"); } int execute(std::stack &s) { configuration.sound = (!configuration.sound); label = std::string(configuration.sound?"Sound: On":"Sound: Off"); return(0); } }; #endif // __MENUITEMSOUND_H__ gav-0.9.1/menu/MenuItemSubMenu.h000066400000000000000000000021461423175241600164450ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMSUBMENU_H__ #define __MENUITEMSUBMENU_H__ #include "Menu.h" #include "MenuItem.h" class MenuItemSubMenu: public MenuItem { Menu * submenu; public: MenuItemSubMenu(Menu * m, std::string l): submenu(m) {label = l;} int execute(std::stack &s) {s.push(submenu); return 0;} }; #endif gav-0.9.1/menu/MenuItemTheme.h000066400000000000000000000025701423175241600161320ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUITEMTHEME_H__ #define __MENUITEMTHEME_H__ #include #include #include "MenuItem.h" #include "globals.h" class MenuItemTheme: public MenuItem { public: MenuItemTheme(std::string l) { label = l; } int execute(std::stack &s) { std::string oldName; oldName = CurrentTheme->name(); try { delete(CurrentTheme); CurrentTheme = new Theme(label); } catch (Theme::ThemeErrorException te) { std::cerr << te.message << std::endl; CurrentTheme = new Theme(oldName); } return(0); } }; #endif gav-0.9.1/menu/MenuKeys.h000066400000000000000000000063761423175241600151740ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUKEYS_H__ #define __MENUKEYS_H__ #include #include "MenuItem.h" #include "globals.h" enum { PL1L, PL1R, PL1J, PL2L, PL2R, PL2J }; class MenuKeys: public Menu { int state; bool isPressed, isStillPressed; int _base; public: MenuKeys(int base) { _base = base; state = PL1L; isPressed = false; isStillPressed = false; } virtual int execute(InputState *is, std::stack &s) { char numb[20]; SDL_Rect rect; SDL_Event event = is->getEvent(); rect.y = 30; rect.x = 30; isStillPressed = (isPressed && (event.type == SDL_KEYDOWN)); if ( !isStillPressed ) isPressed = false; sprintf(numb, "Player %d ", 2*_base + ((state <= PL1J)?1:2)); std::string st(numb); switch ( state ) { case PL1L: st += "Left: "; cga->printXY(screen, &rect, st.c_str()); if ( ( event.type != SDL_KEYDOWN ) || isStillPressed ) return(0); controlsArray->setControl(2*_base, CNTRL_LEFT, event.key.keysym.sym); break; case PL1R: st += "Right: "; cga->printXY(screen, &rect, st.c_str()); if ( ( event.type != SDL_KEYDOWN ) || isStillPressed ) return(0); controlsArray->setControl(2*_base, CNTRL_RIGHT, event.key.keysym.sym); break; case PL1J: st += "Jump: "; cga->printXY(screen, &rect, st.c_str()); if ( ( event.type != SDL_KEYDOWN ) || isStillPressed ) return(0); controlsArray->setControl(2*_base, CNTRL_JUMP, event.key.keysym.sym); break; case PL2L: st += "Left: "; cga->printXY(screen, &rect, st.c_str()); if ( ( event.type != SDL_KEYDOWN ) || isStillPressed ) return(0); controlsArray->setControl(2*_base + 1, CNTRL_LEFT, event.key.keysym.sym); break; case PL2R: st += "Right: "; cga->printXY(screen, &rect, st.c_str()); if ( ( event.type != SDL_KEYDOWN ) || isStillPressed ) return(0); controlsArray->setControl(2*_base + 1, CNTRL_RIGHT, event.key.keysym.sym); // event.key.keysym.sym break; case PL2J: st += "Jump: "; cga->printXY(screen, &rect, st.c_str()); if ( ( event.type != SDL_KEYDOWN ) || isStillPressed ) return(0); controlsArray->setControl(2*_base + 1, CNTRL_JUMP, event.key.keysym.sym); // event.key.keysym.sym break; } isPressed = ( event.type == SDL_KEYDOWN ); if ( state == PL2J ) { s.pop(); state = 0; } else state++; return(NO_TRANSITION); } }; #endif gav-0.9.1/menu/MenuRoot.h000066400000000000000000000021471423175241600151740ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUROOT_H__ #define __MENUROOT_H__ #include #include "Menu.h" #include "InputState.h" class MenuRoot { std::stack menus; public: MenuRoot() {} inline void add(Menu * m) {menus.push(m);} int execute(InputState *is) { return (menus.top())->execute(is, menus); } }; #endif gav-0.9.1/menu/MenuThemes.h000066400000000000000000000024241423175241600154740ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __MENUTHEMES_H__ #define __MENUTHEMES_H__ #include #include "MenuItem.h" #include "globals.h" class MenuThemes: public Menu { bool firstTime; public: MenuThemes(ScreenFont *nf, ScreenFont *rf) { normal_font = nf; selected_font = rf; firstTime = false; } virtual int execute(InputState *is, std::stack &s) { if ( firstTime ) { DIR *dir; if ((dir = opendir(ThemeDir.c_str())) ) } Menu::execute(is, s); } }; #endif gav-0.9.1/net/000077500000000000000000000000001423175241600130715ustar00rootroot00000000000000gav-0.9.1/net/Makefile000066400000000000000000000024011423175241600145260ustar00rootroot00000000000000# GAV - Gpl Arcade Volleyball # Copyright (C) 2002 # GAV team (http://sourceforge.net/projects/gav/) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. RELPATH = net include ../CommonHeader NAME = net MODULE_NAME = $(NAME)_module.o CXXFLAGS += -I$(GAV_ROOT) -I$(GAV_ROOT)/menu -I$(GAV_ROOT)/net DEPEND = Makefile.depend .PHONY: all all: $(MODULE_NAME) $(MODULE_NAME): $(OFILES) $(LD) -r $(OFILES) -o $(MODULE_NAME) ($OFILES): $(SRCS) $(CXX) -c $(CXXFLAGS) $< clean: rm -f *.o *.bin *~ $(DEPEND) depend: $(RM) $(DEPEND) $(CXX) $(CXXFLAGS) -M $(SRCS) >> $(DEPEND) ifeq ($(wildcard $(DEPEND)),$(DEPEND)) include $(DEPEND) endif gav-0.9.1/net/Makefile.Linux000066400000000000000000000024011423175241600156240ustar00rootroot00000000000000# GAV - Gpl Arcade Volleyball # Copyright (C) 2002 # GAV team (http://sourceforge.net/projects/gav/) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. RELPATH = net include ../CommonHeader NAME = net MODULE_NAME = $(NAME)_module.o CXXFLAGS += -I$(GAV_ROOT) -I$(GAV_ROOT)/menu -I$(GAV_ROOT)/net DEPEND = Makefile.depend .PHONY: all all: $(MODULE_NAME) $(MODULE_NAME): $(OFILES) $(LD) -r $(OFILES) -o $(MODULE_NAME) ($OFILES): $(SRCS) $(CXX) -c $(CXXFLAGS) $< clean: rm -f *.o *.bin *~ $(DEPEND) depend: $(RM) $(DEPEND) $(CXX) $(CXXFLAGS) -M $(SRCS) >> $(DEPEND) ifeq ($(wildcard $(DEPEND)),$(DEPEND)) include $(DEPEND) endif gav-0.9.1/net/Makefile.cross.w32000066400000000000000000000022341423175241600162740ustar00rootroot00000000000000# GAV - Gpl Arcade Volleyball # Copyright (C) 2002 # GAV team (http://sourceforge.net/projects/gav/) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. RELPATH = net include ../CommonHeader NAME = net CXXFLAGS += -I$(GAV_ROOT) -I$(GAV_ROOT)/menu -I$(GAV_ROOT)/net DEPEND = Makefile.depend .PHONY: all all: $(OFILES) ($OFILES): $(SRCS) $(CXX) -c $(CXXFLAGS) $< clean: rm -f *.o *.bin *~ $(DEPEND) depend: $(RM) $(DEPEND) $(CXX) $(CXXFLAGS) -M $(SRCS) >> $(DEPEND) ifeq ($(wildcard $(DEPEND)),$(DEPEND)) include $(DEPEND) endif gav-0.9.1/net/Net.h000066400000000000000000000052731423175241600137770ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __NET_H__ #define __NET_H__ #ifndef NONET #include #include #include "Configuration.h" #include "Ball.h" #include "Team.h" #include "automa/StateWithInput.h" #define PLAYER_FOR_TEAM_IN_NET_GAME 2 #define SERVER_PORT 7145 /* The ID of a client is a char with the higher order 2 bits indicating the team, the left 6 bits say the player number. When a client wants to register itself, it sends a register request with id equal to NET_TEAM_LEFT or NET_TEAM_RIGHT. The server fills the others 6 bits and sends the id back to the client. */ #define NET_TEAM_LEFT 0x80 // 10xxxxxx #define NET_TEAM_RIGHT 0x40 // 01xxxxxx typedef struct { Uint16 x; Uint16 y; Uint16 frame; } net_object_snapshot_t; typedef struct { //unsigned int timestamp; net_object_snapshot_t teaml[PLAYER_FOR_TEAM_IN_NET_GAME]; net_object_snapshot_t teamr[PLAYER_FOR_TEAM_IN_NET_GAME]; net_object_snapshot_t ball; unsigned char scorel; unsigned char scorer; } net_game_snapshot_t; typedef struct { //unsigned int timestamp; unsigned char id; // the client ID unsigned char command; } net_command_t; typedef struct { unsigned char id; unsigned char nplayers_l; unsigned char nplayers_r; unsigned char bgBig; // 0 or 1 unsigned char winning_score; } net_register_t; class Net : public StateWithInput{ protected: UDPsocket mySock; UDPpacket * packetCmd; UDPpacket * packetSnap; UDPpacket * packetRegister; public: Net() { packetSnap = SDLNet_AllocPacket(sizeof(net_game_snapshot_t)); packetSnap->len = packetSnap->maxlen; packetCmd = SDLNet_AllocPacket(sizeof(net_command_t)); packetCmd->len = packetCmd->maxlen; packetRegister = SDLNet_AllocPacket(sizeof(net_register_t)); packetRegister->len = packetRegister->maxlen; } ~Net() { SDLNet_FreePacket(packetSnap); SDLNet_FreePacket(packetCmd); } }; #endif // NONET #endif gav-0.9.1/net/NetClient.cpp000066400000000000000000000075471423175241600154770ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef NONET #include "NetClient.h" #include "MenuItemBigBackground.h" using namespace std; int NetClient::ConnectToServer(InputState * is, int * pl, int * pr, char team, const char * hostname, int port) { /* open the socket */ mySock = SDLNet_UDP_Open(0); /* resolve the server name */ if (SDLNet_ResolveHost(&ipaddress, (char*) hostname, port) == -1) { fprintf(stderr, "SDLNet_ResolveHost: %s\n", SDLNet_GetError()); return -1; } /* bind */ channel=SDLNet_UDP_Bind(mySock, -1, &ipaddress); if(channel==-1) { fprintf(stderr, "SDLNet_UDP_Bind: %s\n", SDLNet_GetError()); return -1; } packetRegister->address = packetSnap->address = packetCmd->address = ipaddress; ((net_register_t*)(packetRegister->data))->id = team; SDLNet_UDP_Send(mySock, -1, packetRegister); while (!SDLNet_UDP_Recv(mySock, packetRegister)) { if (getKeyPressed(is, false) == SDLK_ESCAPE) { return -1; } } _id = ((net_register_t*)(packetRegister->data))->id; _nplayers_l = ((net_register_t*)(packetRegister->data))->nplayers_l; _nplayers_r = ((net_register_t*)(packetRegister->data))->nplayers_r; if (((net_register_t*)(packetRegister->data))->bgBig != configuration.bgBig) { MenuItemBigBackground menuBG; std::stack st; menuBG.execute(st); } configuration.winning_score = ((net_register_t*)(packetRegister->data))->winning_score; *pl = (int)_nplayers_l; *pr = (int)_nplayers_r; return 0; } int NetClient::WaitGameStart() { while (SDLNet_UDP_Recv(mySock, packetSnap) == 0) SDL_Delay(500); return 0; } inline int NetClient::receiveData(Uint16 *data) { int v = (int)SDLNet_Read16(data); return v; } int NetClient::ReceiveSnapshot(Team *tleft, Team *tright, Ball * ball, int passed) { net_game_snapshot_t * snap; std::vector plv; unsigned int i; if (SDLNet_UDP_Recv(mySock, packetSnap) != 0) { snap = (net_game_snapshot_t*)packetSnap->data; /* fill the left team informations */ plv = tleft->players(); for (i = 0; i < plv.size(); i++) { plv[i]->setX(receiveData(&(snap->teaml)[i].x)); plv[i]->setY(receiveData(&(snap->teaml)[i].y)); plv[i]->updateClient(passed, (pl_state_t)receiveData(&(snap->teaml)[i].frame)); } /* fill the right team informations */ plv = tright->players(); for (i = 0; i < plv.size(); i++) { plv[i]->setX(receiveData(&(snap->teamr)[i].x)); plv[i]->setY(receiveData(&(snap->teamr)[i].y)); plv[i]->updateClient(passed, (pl_state_t)receiveData(&(snap->teamr)[i].frame)); } /* fill the ball informations */ ball->setX(receiveData(&(snap->ball).x)); ball->setY(receiveData(&(snap->ball).y)); ball->updateFrame(passed); /* fill the score information */ tleft->setScore(snap->scorel); tright->setScore(snap->scorer); return 0; } return -1; } int NetClient::SendCommand(char cmd) { net_command_t * command = (net_command_t *)(packetCmd->data); command->id = _id; command->command = cmd; return SDLNet_UDP_Send(mySock, -1, packetCmd)?0:-1; } #endif // NONET gav-0.9.1/net/NetClient.h000066400000000000000000000030671423175241600151350ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __NETCLIENT_H__ #define __NETCLIENT_H__ #ifndef NONET #include "Net.h" class NetClient: public Net { IPaddress ipaddress; int channel; // the channel assigned to client char _id; // if I'm a client I've an id char _nplayers_l; char _nplayers_r; private: int receiveData(Uint16 *data); public: NetClient() { } ~NetClient() { SDLNet_UDP_Unbind(mySock, channel); SDLNet_UDP_Close(mySock); } /* client methods */ int ConnectToServer(InputState * is, int * pl, int * pr, char team, const char * hostname, int port = SERVER_PORT); int WaitGameStart(); int ReceiveSnapshot(Team *tleft, Team *tright, Ball * ball, int passed); int SendCommand(char cmd); inline char id() { return _id; } }; #endif // NONET #endif gav-0.9.1/net/NetServer.cpp000066400000000000000000000111321423175241600155100ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef NONET #include "NetServer.h" #include "Player.h" using namespace std; int NetServer::StartServer(int port) { /* open the socket */ mySock = SDLNet_UDP_Open((Uint16)port); if(!mySock) { fprintf(stderr, "SDLNet_UDP_Open: %s\n", SDLNet_GetError()); return -1; } return 0; } int NetServer::ComputePlayerID(char id) { unsigned char tm ,pl; tm = (id & NET_TEAM_LEFT)?0:1; pl = id & 0x3F; return ((pl << 1) | tm); } int NetServer::WaitClients(InputState * is, int nclients) { IPaddress * ipa; //char nleft = 0; //char nright = 0; unsigned char * id; int i; bool inserted = false; char pl; _nclients = nclients; while ( !inserted ) { // (nright + nleft) != nclients) { inserted = false; if (SDLNet_UDP_Recv(mySock, packetRegister) != 0) { ipa = (IPaddress*)malloc(sizeof(IPaddress)); memcpy(ipa, &(packetRegister->address), sizeof(IPaddress)); id = &(((net_register_t*)(packetRegister->data))->id); if (*id & NET_TEAM_LEFT) { for (i = 0; (i < configuration.left_nplayers) && !inserted; i++) if ((configuration.left_players[i] == PLAYER_COMPUTER) && !_players[2*i]) { inserted = true; pl = (char)i; } if (inserted) { *id |= pl; //nleft++; } else continue; } else if (*id & NET_TEAM_RIGHT) { for (i = 0; (i < configuration.right_nplayers) && !inserted; i++) if ((configuration.right_players[i] == PLAYER_COMPUTER) && !_players[2*i+1]) { inserted = true; pl = (char)i; } if (inserted) { *id |= pl; //nright++; } else continue; } _players[ComputePlayerID(*id)] = 1; clientIP.push_back(ipa); /* send the ID back to client */ ((net_register_t*)(packetRegister->data))->nplayers_l = configuration.left_nplayers; ((net_register_t*)(packetRegister->data))->nplayers_r = configuration.right_nplayers; ((net_register_t*)(packetRegister->data))->bgBig = configuration.bgBig; ((net_register_t*)(packetRegister->data))->winning_score = configuration.winning_score; SDLNet_UDP_Send(mySock, -1, packetRegister); } else { if (getKeyPressed(is, false) == SDLK_ESCAPE) { return -1; } SDL_Delay(500); } } return (nclients-1); } //Uint16 NetServer::NormalizeCurrentFrame( int NetServer::SendSnapshot(Team *tleft, Team *tright, Ball * ball) { unsigned int i; net_game_snapshot_t * snap = (net_game_snapshot_t *)(packetSnap->data); std::vector plv; snap->scorel = tleft->getScore(); snap->scorer = tright->getScore(); /* fill the left team informations */ plv = tleft->players(); for (i = 0; i < plv.size(); i++) { SDLNet_Write16(plv[i]->x(), &((snap->teaml)[i].x)); SDLNet_Write16(plv[i]->y(), &((snap->teaml)[i].y)); SDLNet_Write16(plv[i]->state(), &((snap->teaml)[i].frame)); } /* fill the right team informations */ plv = tright->players(); for (i = 0; i < plv.size(); i++) { SDLNet_Write16(plv[i]->x(), &((snap->teamr)[i].x)); SDLNet_Write16(plv[i]->y(), &((snap->teamr)[i].y)); SDLNet_Write16(plv[i]->state(), &((snap->teamr)[i].frame)); } /* fill the ball informations */ SDLNet_Write16(ball->x(), &((snap->ball).x)); SDLNet_Write16(ball->y(), &((snap->ball).y)); // ball has just one state //SDLNet_Write16(ball->frame(), &((snap->ball).frame)); /* send the snapshot to all clients */ for (i = 0; i < clientIP.size(); i++) { packetSnap->address = *(clientIP[i]); SDLNet_UDP_Send(mySock, -1, packetSnap); } return 0; } int NetServer::ReceiveCommand(int * player, char * cmd) { if (SDLNet_UDP_Recv(mySock, packetCmd) != 0) { net_command_t * c = (net_command_t*)(packetCmd->data); *player = ComputePlayerID(c->id); *cmd = c->command; return 0; } return -1; } int NetServer::isRemote(int pl) { return _players[pl]; } #endif gav-0.9.1/net/NetServer.h000066400000000000000000000031621423175241600151610ustar00rootroot00000000000000/* -*- C++ -*- */ /* GAV - Gpl Arcade Volleyball Copyright (C) 2002 GAV team (http://sourceforge.net/projects/gav/) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __NETSERVER_H__ #define __NETSERVER_H__ #ifndef NONET #include "Net.h" #include class NetServer: public Net { std::vector clientIP; int _nclients; int _players[MAX_PLAYERS]; public: NetServer() { memset(_players, 0, MAX_PLAYERS * sizeof(int)); } ~NetServer() { unsigned int i; /* deallocation of clientIP elements */ for (i = 0; i < clientIP.size(); i++) free(clientIP[i]); SDLNet_UDP_Close(mySock); } /* server methods */ int StartServer(int port = SERVER_PORT); int WaitClients(InputState * is, int nclients = 1); int SendSnapshot(Team *tleft, Team *tright, Ball * ball); int ReceiveCommand(int * player, char * cmd); int ComputePlayerID(char id); int isRemote(int pl); inline int nclients() { return _nclients; } }; #endif // NONET #endif gav-0.9.1/osx-info.plist000066400000000000000000000011401423175241600151160ustar00rootroot00000000000000 CFBundleDevelopmentRegion English CFBundleExecutable gav CFBundleIdentifier com.gavproject.gav CFBundleInfoDictionaryVersion 6.0 CFBundlePackageType APPL CFBundleSignature ???? CFBundleVersion 1.0.0d1 gav-0.9.1/package/000077500000000000000000000000001423175241600136765ustar00rootroot00000000000000gav-0.9.1/package/gav.desktop000066400000000000000000000003351423175241600160470ustar00rootroot00000000000000[Desktop Entry] Encoding=UTF-8 Categories=Application;Game;X-Red-Hat-Extra X-Desktop-File-Install-Version=0.2 Name=Arcade Volleyball Comment=GPL remake of the DOS classic Icon=gav.png Exec=gav Terminal=0 Type=Application gav-0.9.1/package/gav.png000066400000000000000000000040431423175241600151620ustar00rootroot00000000000000PNG  IHDR00WbKGD pHYs  d_tIME  sIDATxՙ_hT?Lldj1KTud YHukB|)q}PQM=}1輬ʆ`@M)qv#Cm~{g8[˽w~=s7P)j `>gMR*V񷊠,-@047gjtDR։!`tDpYԞՆp/!a<-_iItx*#t@[hJ !|7.{].z)L "(;8l h k";oC4UG8)Oɠ#J$R))D"tuS@BiE{E)XZam8<&k}O -@ 8MOO311@OOH}. -\~t!0O볯>&NBKc#g7d mˌL&I9p52>#>'un"y47߆跗vpܧ5XoWR73}JG#솞 PȸfLNNdtt:͞={nhx0y 5X]l ;mpnb2+σe8MlX/52Gh~d.5A2 ${UWxn s{eRr,b#ψS!qfg`4 gp Zj@ _h l @Q0s̾rA[ @ urҌl5d;daZ8GZoD7:k, (5~װi~(5%ЩP5WdeD˱r=nն}W7DKJvE`ַUr2HBFvt0OߖOP횂WRaM (ߴT5*3%|$NbmXo=[D[<1%`>KBv"uݭK-:|?o]``@2չz78d[?~'Xng;?. (EEoK:nqB#n6B)])-B4XQd^=_4ӇuݩJ'Q*{ 2*!; dt2AYZj&@[*KT\Ȼړ%cdy1bknvz/}?'oS(9KXM̵ÓMn7/ @ 'ԉ`fON 4/kؼ JTtvZ_94vY<̗/Ids|nukx>WD4|]{Z%R/ՊM%|࣏*!j8tB΅e'iS]xO3]ulh\1u0pI>l)y"džeyT9f )t8Ըwm{"B9;/z0aN JP.Oj9Hx7$E?8\ R|S@ֹuG^/֕xџ *j6PZ"UAU /O#FGqܸ TpjR*uFU ģ@UIcG oAJ)Du39.~oXTeև` DgR]﷫5A?Ƀ>eٌĖIENDB`gav-0.9.1/package/gav.spec000066400000000000000000000045521423175241600153350ustar00rootroot00000000000000Summary: GPL rendition of old Arcade Volleyball game Name: gav Version: 0.9.0 Release: 1 URL: gav.sourceforge.net Source0: %{name}-%{version}.tar.gz License: GPL Group: X11/Games/Video BuildRoot: %{_tmppath}/%{name}-root %description An SDL-based rendition of an old favorite CGA game featuring two characters playing a volleyball-like game. This "revamped" version is supposed to support theming, multiplayer games, different input devices and networking. %prep %setup -q %build make depend make %install install -d $RPM_BUILD_ROOT/usr/bin install gav $RPM_BUILD_ROOT/usr/bin/ install -d $RPM_BUILD_ROOT/usr/share/games/gav/themes install -d $RPM_BUILD_ROOT/usr/share/games/gav/sounds install -d $RPM_BUILD_ROOT/usr/share/doc/gav-%{version} install -d $RPM_BUILD_ROOT/usr/share/applications install -d $RPM_BUILD_ROOT/usr/share/pixmaps install -d $RPM_BUILD_ROOT/etc/X11/applnk/Games install package/gav.desktop $RPM_BUILD_ROOT/usr/share/applications install package/gav.desktop $RPM_BUILD_ROOT/etc/X11/applnk/Games install package/gav.png $RPM_BUILD_ROOT/usr/share/pixmaps cp -r themes/classic $RPM_BUILD_ROOT/usr/share/games/gav/themes cp -r sounds $RPM_BUILD_ROOT/usr/share/games/gav/ install README $RPM_BUILD_ROOT/usr/share/doc/gav-%{version}/ install CHANGELOG $RPM_BUILD_ROOT/usr/share/doc/gav-%{version}/ install LICENSE $RPM_BUILD_ROOT/usr/share/doc/gav-%{version}/ #rm -rf $RPM_BUILD_ROOT %clean make clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) /usr/bin/gav /usr/share/games/gav/ /usr/share/doc/gav-%{version}/README /usr/share/doc/gav-%{version}/CHANGELOG /usr/share/doc/gav-%{version}/LICENSE /usr/share/applications/gav.desktop /etc/X11/applnk/Games/gav.desktop /usr/share/pixmaps/gav.png /usr/share/games/gav/sounds /usr/share/games/gav/sounds/score.wav /usr/share/games/gav/sounds/servicechange.wav /usr/share/games/gav/themes /usr/share/games/gav/themes/classic /usr/share/games/gav/themes/classic/Font.png /usr/share/games/gav/themes/classic/FontInv.png /usr/share/games/gav/themes/classic/background.png /usr/share/games/gav/themes/classic/background_big.png /usr/share/games/gav/themes/classic/ball.png /usr/share/games/gav/themes/classic/plfl.png /usr/share/games/gav/themes/classic/plfr.png /usr/share/games/gav/themes/classic/plml.png /usr/share/games/gav/themes/classic/plmr.png %changelog * Thu May 25 2006 Alessandro Tommasi - Major Changes gav-0.9.1/package/themes.spec000066400000000000000000000075061423175241600160470ustar00rootroot00000000000000# use rpmbuild with --target noarch option Summary: GPL rendition of old Arcade Volleyball game Name: gav-themes Version: 0.7.3 Release: 1 URL: gav.sourceforge.net Source0: %{name}-%{version}.tar.gz License: GPL Group: X11/Games/Video BuildRoot: %{_tmppath}/%{name}-root %description An SDL-based rendition of an old favorite CGA game featuring two characters playing a volleyball-like game. This "revamped" version is supposed to support theming, multiplayer games, different input devices and networking. This package contains additional themes. %prep %setup -q %build %install install -d $RPM_BUILD_ROOT/usr/share/games/gav/themes cp -r themes/inverted $RPM_BUILD_ROOT/usr/share/games/gav/themes cp -r themes/fabeach $RPM_BUILD_ROOT/usr/share/games/gav/themes cp -r themes/unnamed $RPM_BUILD_ROOT/usr/share/games/gav/themes cp -r themes/yisus $RPM_BUILD_ROOT/usr/share/games/gav/themes cp -r themes/yisus2 $RPM_BUILD_ROOT/usr/share/games/gav/themes cp -r themes/naive $RPM_BUILD_ROOT/usr/share/games/gav/themes %clean %files %defattr(-,root,root) /usr/share/games/gav/themes/inverted /usr/share/games/gav/themes/inverted/Font.png /usr/share/games/gav/themes/inverted/FontInv.png /usr/share/games/gav/themes/inverted/background.png /usr/share/games/gav/themes/inverted/background_big.png /usr/share/games/gav/themes/inverted/ball.png /usr/share/games/gav/themes/inverted/plfl.png /usr/share/games/gav/themes/inverted/plfr.png /usr/share/games/gav/themes/inverted/plml.png /usr/share/games/gav/themes/inverted/plmr.png /usr/share/games/gav/themes/fabeach /usr/share/games/gav/themes/fabeach/Font.png /usr/share/games/gav/themes/fabeach/FontInv.png /usr/share/games/gav/themes/fabeach/background.png /usr/share/games/gav/themes/fabeach/background_big.png /usr/share/games/gav/themes/fabeach/ball.png /usr/share/games/gav/themes/fabeach/plfl.png /usr/share/games/gav/themes/fabeach/plfr.png /usr/share/games/gav/themes/fabeach/plml.png /usr/share/games/gav/themes/fabeach/plmr.png /usr/share/games/gav/themes/unnamed /usr/share/games/gav/themes/unnamed/Font.png /usr/share/games/gav/themes/unnamed/FontInv.png /usr/share/games/gav/themes/unnamed/background.jpg /usr/share/games/gav/themes/unnamed/background_big.jpg /usr/share/games/gav/themes/unnamed/ball.png /usr/share/games/gav/themes/unnamed/plfl.png /usr/share/games/gav/themes/unnamed/plfr.png /usr/share/games/gav/themes/unnamed/plml.png /usr/share/games/gav/themes/unnamed/plmr.png /usr/share/games/gav/themes/yisus /usr/share/games/gav/themes/yisus/Font.png /usr/share/games/gav/themes/yisus/FontInv.png /usr/share/games/gav/themes/yisus/background.jpg /usr/share/games/gav/themes/yisus/background_big.jpg /usr/share/games/gav/themes/yisus/ball.png /usr/share/games/gav/themes/yisus/plfl.png /usr/share/games/gav/themes/yisus/plfr.png /usr/share/games/gav/themes/yisus/plml.png /usr/share/games/gav/themes/yisus/plmr.png /usr/share/games/gav/themes/yisus2 /usr/share/games/gav/themes/yisus2/Font.png /usr/share/games/gav/themes/yisus2/FontInv.png /usr/share/games/gav/themes/yisus2/background.jpg /usr/share/games/gav/themes/yisus2/background_big.jpg /usr/share/games/gav/themes/yisus2/ball.png /usr/share/games/gav/themes/yisus2/plfl.png /usr/share/games/gav/themes/yisus2/plfr.png /usr/share/games/gav/themes/yisus2/plml.png /usr/share/games/gav/themes/yisus2/plmr.png /usr/share/games/gav/themes/naive /usr/share/games/gav/themes/naive/Font.png /usr/share/games/gav/themes/naive/FontInv.png /usr/share/games/gav/themes/naive/background.png /usr/share/games/gav/themes/naive/background_big.png /usr/share/games/gav/themes/naive/ball.png /usr/share/games/gav/themes/naive/plfl.png /usr/share/games/gav/themes/naive/plfr.png /usr/share/games/gav/themes/naive/plml.png /usr/share/games/gav/themes/naive/plmr.png /usr/share/games/gav/themes/naive/theme.conf %changelog * Tue Feb 24 2002 Alessandro Tommasi - New themes gav-0.9.1/themes/000077500000000000000000000000001423175241600135705ustar00rootroot00000000000000gav-0.9.1/themes/classic/000077500000000000000000000000001423175241600152115ustar00rootroot00000000000000gav-0.9.1/themes/classic/Font.png000066400000000000000000000032421423175241600166260ustar00rootroot00000000000000PNG  IHDR6gAMA abKGD pHYs  ~tIME "uIDATxK: a'uK]&[UlH7|XC___rz{m ?l܍ƁjE_i,^ֳ{g?jWa[_5ۯڿo֟zT{inTW}jT ?ڎqy>\U{]R+OUӟ[늠0vlQyFvzmw՟U'zVǿ*r|Tt>zV?jʫU)[uT_ԬZ7ʟ޾nuF~V}=]Ucv"=eR^?wڳU^[g e_mEo'#wӳϟק 9uJo|z|Fx#w}LVv[vGRg#ogݬuT|}=TYLdh=3UGagw׈ֿwzw;9/{N^?Ok^?}}}o\[Ǐ 9&(z`/6OUWGY U$jT^af`e#o]4rvGy뫊mjz=]U5ߝqoh}3qtj`k_ZPS^_m,W)ʐ辕-k}n+}9`_G:c0[>{e;Af}rώ/2F 72g|]qnOwhZuSD3֛^1׽kF{;YODy9=OՓzV}UWe:]@Ut}_f~j=/VvǟU>~mou=euh_5o۾U;Oc3{^=/aW5GZʩ{SΟU^}TCZ>-ǝ g7ڝ gb}ogPe vԌStv?jF@ԊMIENDB`gav-0.9.1/themes/classic/FontInv.png000066400000000000000000000032421423175241600173030ustar00rootroot00000000000000PNG  IHDR6gAMA abKGD pHYs  d_tIME ,[IDATxK8 $ՋK.Ӄ.U4@$|XCK~^rz{m Yg6FUjۏj[zme=~g峟{c}ʭ^_yۯׇzW߷̿lUKY=QqPj4]t}\F>}5*zpzϲ8㭧k\vW}nc mQU4{r~'Vߺ"h']19߮muv^y]-ogr*]?_ϳھ{UGV]G#պ5k|M=o[Ϫj}̮[d |?A*}~gY{V}#~ܺ?0 ];]?Wun4rz6"!V#N[Oo=c}vH/uDoaߝɪr{noHl㬛5?9~YOׯOAD㽎*?S~>V9|zz}hw~X߿C=({4WU%zxc2O'loD\a}u|| QERKy*՝vjV6u I.jw$HvqޮF:UUYָf7sGf 5uyrUr [oߧߗv?ݬxd˨3QQo3{)dX-w{"ad@{#sOgFy뉦Q:|>NԑUz2՟y@?}PNjwD#HGՙ ]j֩nΫvq8?v#㺱k*s5ZV/o%~dEYe3FW|v#a oY=QEU=9At{~y-vEDG׿z>Ɵ*mw-]xJ&ğ-j?QEF2vLSN-)z}^u3U"{9?o/-7;d*۷f̝k_f[uV3xrQIENDB`gav-0.9.1/themes/classic/background.png000066400000000000000000000252031423175241600200400ustar00rootroot00000000000000PNG  IHDRFrgAMA abKGD pHYs  d_tIME 8kq IDATxݏ$y9Uo3/I 9A mFb0"2 HL 6,Y&%rIQ Nb6blDzB:/=]w~Wm>T xX|UUVGn4-KfYu]Kiu/z~8\._yh4} ߟڪ1o|EQ޸q×qFYUUrοRzz˲,bXYEJKUUu.c9_eꫯ# /\>]%pzz*t163b<̏~xc<::oaxlf)tX,O,b4FQo¾ZFQg._<_וe9t`:u}ڵs,||ײ,?/ed2}l6mF.X~6uX,bu]EqTU*TiY~c1yku=q]מ(—G}'vv?BX,EQjL&:N~{}K_9w^}ՉWr9WU;b5?圽\V^x1}^xqaPu'u+mmReg>+W|_f9g ?99㧋'}͛}lh?`yZ+!zG}Eyu=rt<~,KOS-V^?7w^Esn:gdz[/ ?2P.ڿsppۡ着ArL&ė}/)M&/ /+}1/k}U{ѾLg:sx\Utڮs֭~Q{٧:Po6I|Y{\jfɉ,txxK/?U9K^_xXޞ?W˲<991>|ooқoY݋/jۯ|+{{{!].~yKy?|dxTxɉc\,W\|'VcO猽 ]&),ܹ㧁s1O!Eq||,ryppcb~׮]oy!+Nh{뾒_wKN>B u%b޽{^z^\~ooO6M>Ţ[X,NNN|XG˲_X,~i~NSEmÇ}DTU%iZyafׯ_lGiS=92oHz՜l+(~ڵk!t~VZGWg}^rʧ>)I>#ST;z뭺_|EIַVW*_7۷}-kg^K\?KCg.Coܸsy{\VUP}=[,\@$?~Ç}u$*`?S?s`Kׯ`[6Py{?UUdҮt:K̶hi>g>|>/<6|]:yI%\|{8 oyt: ZEl6v&?jG}'Fd2i|M6iq~O^.g˲y_ᓰڋ$>>\B~h;oˇONNa+SJ^b1|}@FCŏHb퐻6Gx;[[OxuNj [}NIe we3\޿,>EOJKp ]>=j2}ZݗRgCFk.M1)]0rAHm#iZMv1\d"TGGG^9( #{=C>Bv6}/$"$EZ; 'O\-9Iqv;xaB_:$>4UUy/?׎'''}6=K^*aI~@~6NG|?)U+yяOEoyއ} k+E+?gU1wyۛp>*<|Go߾}Gxhe<;[oBsU׿uU {lUR_k?\xty}>8s/}竪7qxx}<?s'''7n8==vZ]_җ|eּza{t|NgOQO-[ӟ[^xᅺ}!+rzz#Ksw޽zoRzڂݻ/9_~Oz}xYۇ"0WJKDT3;D;M+EIu] t"GGG^P޻w 睪9}E>y2{z9NOOO}G+髴WUh4:o 6?5{a3t?q$895SOݼys>= ILoOd6ݹsǫ{_T_x㣵mߎx{.xw7#'? oo%gDODEq]3zW&ǿ9Ǿyއ}.uvHwX,[׵sv~ܔr:җ٬N$}Oo~OǞ^OwyGɉY1u]s[od29<UU=s k>X3˲W/ڹwRW\999??NyLoLrooo\=ug^B+-&htUUjJ䩧oaf^|b|Ν;>ko\NS_z~~dřK>NEʲ<<fqX۷}q4MSxԯzkK?r/l2Þ|>G{FN+yhnW⧴h; O&1Ov۷=};ZׂxH.X#ig2{!3<|ӅEQ8S;gе_w^|}ݜ*xEVylޚǞv]ɧ xڋSTBW^{?fξ~hϫSwsvUhQsu;ןmZwn|f}ViWq7Osn^3˂RTdV0 j0A ~QRl`D蜛Ky$eH GUI+=0C2&U :6YKSN>^c4d糡C TtSd0#~UI)Ȥ`[beŠ"̒ԢVșg`{@_YJ])RYe*+RZOʙ"0YYQ,'Bʵr(mAERr{*]2'Gd!raU86TJ.Rڏ*k٩y]ˮW"R%eUTILe-)-Ng~?آ?|TmEֳrP6I!EIODQ<T8AmDwj1 l%,~;Tt))d-ueug^_y?_݃?_Iz_Kۉ$E)+JAJi7hgO#dkxB0emcR<*SO~{?1\YNX@oxw#5wV,eEr4:-jQ(]:l%*`7L:4)MrYIέo/<"^G|9mR*˼LY 9@@DSrYbPWӟݏV?7403{5\"X꼊!D+B`QLE)CѵNj+W~g>e(09dR( EW9!-3~pȵšRFTz>ɟgv`9``kQ}bRR")*͡GUU-sF/``{QɒTHA2)T**ݚۿûo~}o_*q l->@dܶE MB^D+(V^ۊ AGII:Vk?w{hWS*4`7.$ϲ( *b-% ! l-SiT@49W{n]yo}1cmŧ I1hN,(W9+ͨޠ00$T@o*`7 ^G  03 xEnz{*GnC3 A  z~ppP,pM?``wQ{9" ^O 0  CB !  00 z~0PA?``@ޠ00$>A?``H>00T@>@ *`G  ߅RE=C?``}B?``0ޠ00$T@o*`7 ^G  03 B ! CB ~z~PP=B?``8`T()+4'!!OT JJCw['BP5ZK?``0KP̚KIeLA fJ!%b00$_* KV0+efldYe)j8t00$T['3e(%7؅(MA?``HM3K.إ8H볻v[L:E!ߠS,?BMTIרD%I9b ƣ00 TW=QJiwmן߃ 6;"}w !y$iA$STԭ( 6r7.1qBs_00Td)<00 |zCA 붸C?``(;T(/Å~p o-`ӟޘ .*`NLO?,O/'ȂI?``0S~f~ Vu7y c~E mf$~.#?~p=o` 0z'HC]~PA?``H8|z~P}B?``0;§CAXr΅00>ߙ{*`m9\00 |z6Wk  CB !z~z~p@=C?``00 T@oޠ00$T@ *`? KdR!*>OIɸ{E7vK䃧e>zjBC~P0$˒TrA 9Y;X~F?``wA)!LIƏG?```\҃ɺtd*%a{ks `7 W@o*`7 ^G  03 x BT(u1RkJz΢g ;-HW$E)6B*]gy~`PLl IDAT4E{[ 3:#!w\0 b J_B\p x[^nYf1JAa$(F?``88| )geb|snpM?]1]zFgRPx(*毥TVeِگO6?G?,* 4)\IbR> 6U)JZRIKeBq6!wQ.F?mZ{*[#Y\GORRPZw ޠnkM&\O!*fY@i[eV%)*![wvn  F> N. ZX2$YQe\/X]HK`jIT* w[*HɋWBP9o,V]Gű J\JVJBx{0葶R{~;l=;$%.e~?5/l-R8*WRT9NNf13,Z QZRP^5mT椓R2Ra,U AqV!92g0oHmM~Uop AZ8]`? T@oB  JV~# 3B tݪ[vR* ݿoxhQ=C?S)%:Ftb9 ;dE)JYMOm$HZwYW0u?`?`lAdAd]RJYv;Ű,IǨޠpk=[} VEŬU ⊥> ޠpLJύ,uoV,xVMatz~*Yt I΄)i)YXY^Jz~ Q>*z'ܩmlIu"q[v=>A?.%i$+L-?.9*esG=C?Xszph[jY!)4CA?.e_IjoG)PV7A?H浰wTϻ.=m3IIVHE-IK)[B*(j3b*d言>pr\y6XF% esp eg(ʤ9J+ U:  JRrt:mO[d21C7ힷNqFR:FkO~s:oIwr^rzg>O~e o9<Ճ^`M|#[/|:zd26 Nt4m[#oE$cl61Ɯ DDM1#JwEGY4P?j_f^l΋* N3k^B^üz,7xfֶh4*9FU]_`ywI&y~x^ömWWWUu:=B{_T~ݾܼV޹ 1J`&'҅)v;t*QGfel6O3 K5۹d2 !|#g>sԩW++++3?3f>_dyFNtsmJm8_syC,/$/6?E֏rpO+_[?y'O;;;{{{%Hm=VFr='9Ę7}{W^O>3Op8/9;~`0EdG Cǎk͛mv0TUOԔ-PVUU4)as1U^V?䁺\•2sWկ}kyp86M_Og?ٓ'O1\sEկˬm۝>='O !y3o2̱cǚn6 ۏ~g~RpW}ĩ9Tw*dC|yty: y;tQ9G?{ĉ/_׿v?K_z^xʕ+$ݼWʯSO=5Qd2ַ?O=sλ? MӔ*UNZ\,#g HFc{1h^TU2Lrat:mfee%a~j^B1%FFQ).G1noo~%| .*h4* ?,T|,Z)}MpC庈~E^su.M+|w_`7A>F y'rw9.Kf͟{yDrSˬ)dee󉲕|Rd`p??8R*=\) ׯ_??ZO>Oomm}[?22_)M/0O4E;{dQÔχn~j]?Ox<~O$'\⢪{{{86pu@:G~L&%c׮]O3 #Epލjsi͛7Uk龡 Xt:;zhIeᇾrR*]n?etv4;w.O)QetS\NNyd U;i̹;,*msh\#Y.M)Ҥ}|cE;U?zp8\bJ5ٓ%gߣyQeMA,{|y90J+^ϧtru"r\ϟ2\71mܾ ;.i[sƝ;wPX8J%|#ׄ#9L߻xby@%("^۶o#GAOOe W/}K_RyZj.=~veQe$u:J'"0Ē~h;VKAK9n1~C; JEg1CSbk0 _*(nw-%$ R /Rֳ{5h^տ'LUs<]__߾byy9CM1~'TẮK72ߝC۷L>6.G>|@yMYL#޷wDp~,KWDrg]WJE yȑ#"Rr38GQ^EMV+,XF2Gy*]X.SHFωGXcRh4Lz뭕&t-Vٛ>1|Wu1@("9j"]~?qݢ՘.')BLIy$yo%j ѣ53e<,){TY\o]|TKq^YYw^Ve,DZwEpޥC.Ǭr| /붥,%'?ɝz=!r<\~n"GƔh4:vX요A%OoF)0P_~ym?ݜ`ktʼ\9,{~>2s*wXߔf>T ;Wy&_ySK/R1Y]]=qoowwwŋ\de0_׾կEÉ͛7뺮zmmm:~jᅴy7{yGYGW !ղ{g̷[Tޯnmm~u/JK/f|$PЇ>oͿ3i/e:>3˿wwyז4N0Ox[ow""j<-s?s)+WqFǏHW^۵k)"e*}~Ep޽2,]u6-3uޫOY!GC;TK7>Be5˃9g]Xnww7*ɹvww^h~]Z6 tuzι3^ϫ_o&9."yc,%!_ʥߩ;Y0ow=`pћ7onllTU :2rww7?\%S巸i7oSMeUˀqyy񝦴-̟.zS AuKBFR[UƮѤtmCUUyG`mmi2o8ږb|ɯ4G\:|s;uT0 FU/2)rw'N X k+./} .OOoZλe2|_+w/#y^uS //mwꮚT_xBΝ{g? |st|,CedwcǎYWF_BwiaNƹ xN,s{V!mwѶm|+_FxG.'uo~_-릗˦'}g~~)o\J .}lr#GVUe{hp"9k yMyQ;y䍯]w3AвL3+O~i)JKQWi-yykH/.KWȑ7o v\Z쓡7?]4'{u]4lS9rTH74iW\^z _TU~ˈrx|ȑ2 y*BWW \ž|pN#(N){Z@A,=XU?tϽ|5bx[ͳ p_?JP\\Nm sl vU ׻+֓o?_BOƓP!?x+#[ydsvnR]ՏKAN"ۧ;қVxE^[FgsGQD Xy~֫ʇ "R27/k*sp|r\W._P7;U98]CzvS~ mZV9c.~"|7C+sEU&#`+rfA{w `;+Jׯ{W0+(,r]~RrǶ2=),~{lCw:0JC͠rEƿ/JaeeK1եmέau r{_ԏ}ApXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@p@WP;\u ^nDQќ]C/I費X~@^Q5Qw*;^98`^B{TLEcT$#0\DL1r.wk?AC2.!xr;,;̅Rv}U\g]C/H1{$BvBp9r.bCg=wOi;,#;̅Qohi$s* 0'2ju3uS*aTDT$E^5yHeCp""uI<\l=]I5 &TX2w9{W"4")b61u5It.&jI%Kt .QDfē``>vSF%"]<0\|rI.IUId0G\*U:Ef"b"&``.JgҼK} *-UA$b.A<7qg 恻$Siev!J]ܽYA#YR$%i:R&ˇAE]\܂Q2D-O>U`q`ՊPF*!'[f1҃~I$;̇<s͋*\4HJ*x2x&}?TM8wM\y%Ap9]p\ALS/ړT)UYu` v6S5"+kr,p"{S7i˂s n]$%}l IDAT$:uFFiH8ڑ7~ΆS><F}_?d7`Y`nJRub#l0ELjVdVy|nq0 im@c Թ | :+L[=E$whq_嵭6.qs[kǪk+"A``>ܖԴw?V!D 7]z[GYՔVHwD_vtޅ3OxⱭco\v>VM482D072J*CƘGܥ57qUOFwX>w{.9w[2!UEUU敤8ʰ'NY^]zecՍNnn?wfFMC˄wLNA,|{eP렎ĦN[7݃;SS`0sDT]=͂{]XRf]~}l_8'7]\].u᭣wjJ+*q;,j܁U Ol1wI"H*}UbAUܣJ b4<4Zp`y0;=K ݅SYٌTqtGk^L7]8':oaդ*MS-Ks+Q*$=01<ƘGܥ57qUOFwX>w{rQhq_嵭6.]Ō %IT&:Sg&+;/ؼw?]ONXtt9sۤTsL 1jPW(6RkY2~a愉hCow[2!UEUU敤8ʰ'NY^]zecՍNnn?wfFMC˄wLNA,|{eP렎ĦN[7݃;SS`0sDT]=͂{]XRf]~}l_8'7]\].u᭣wjJ+*q;,;դ@*1ĠjQ% 1hcRnf{-,0g\H.f\ե2p;/^`q|™O<ֱ7.~;] &UijX"w]Ty]%bu!UqAc#Қ';,;̇=-W5 U O^^]^ۺyi#wϪUbqeBp&D*HW*c"֨OkA=TCk$Q̢ 1P$KEDVƺ_Htjv^zͪ>zG׷m|noq$R˄st%yuUW$ILL,\rX*wn.U̸]T+Mh^8ufrKo^x{籽u$ %tۤTsL 1jPW(6RkY2'a愉.D< 1 ފ4u=}ׇ7/=SZ۸xegw[2!UEUU敤8ʰ'NY^]zecՍNnn?wfFMC˄wLNA,|{eP렎ĦN[7݃;SS`0sDT]=͂{]XRf]~}l_8'7]\].u᭣wjJ+*q;,;[HR!}_i&El6*1ĠjQ% 1hcRnf{-,2 EUē =  wu̇4.6n߻pfO]~"{mno_t g|#6.^UTWD"#c>WƀI)q[.a..Z%!(U4UTR;,;]h{{p)#)_U/RUT%[e^I }ԙյW66_x#{{gi414*>L_Ev}QHJyVt44b*&^E:&%G.%Cp\#_j/q&꩛ bA )V u3K.>jN/zvV-& Ը2!.ީ(כ}ڋǼ T}EA]:YjIیR tf=7XkX//[g}uUE]>[sխq[7:z~Ϊ*9,;)Λ(=>j.P!Us*1hDrH7k`HRI2Rp%©v/pW|8NÑxk g֟>c[޸t}2Tipe`Hn*#$SSLFE<쮒@1wiD\Uē-zw_Jv?0V9*7׫k[76/m\:yYUJ>LDDU Q`P EMF1@ ,;چ뭾"EDVƺ_Htjv^zͪ>zG׷m|noqfn, ;Ԟ vwϣ^0$IffbA-l`Ǹ./n%L]T+Mh^8ufrKo^x{籽u$ %Ap ]Q6)Uw(Ws+ji-ָ%s>X6wB`".A4xBLiEoں߾ΞĩGmm\3EFpp[R..Z%!(U4UTR;,;̇]-x*A*JRMeWmk'7;3HQIqe :^Ig9-|{eP렎ĦN[7݃SKwĻ9a" .Īb%P7tf©G>~n߻^ib, ;?ܳ]fUyjT}EA]:YjIیR tma` q[M~f1*"~تNn}k޺vV}5O8 @_٬ df7TbAܣJ b4<4Z4[`Y܁%6I}n]8qqW|8NÑxk g֟>c[޸t}2Tipe`܁+RdT*Ih !{cqLUE<}``>>4hIh4UJxōKNn9Velŭ;,;5 ݬTGRF}\h] X&b%"X:w.&b2JEK%VU݌oV}ӏ?}lvӍ}c&wX&w#%|ჽ1 ꪮ*IXP T0'B\]qY$WDGSp|}eu޼c{4IIK"!IҍʙbԠQb%Um"SdNdeÈ; ])]gbAikv{Pko^8{9qx"m[KM{hḄTZkZwWQI>|0Jw57eBq+Iq4aO:^~do &F% 507rփXW "1cnS1Q*ʠA5Mn.A=wra愉z"*XI3h/]:1pѧOy.ooZ=$P˄+U N+b".Dh& w=e6l7]DZ4փu0ԶW(3S`܁"A\4ge.bQ7]z[GYՔV ] 3MzYl6(k"JA뿅>;~}J 1{TAC&ژFY랺s3%ApHo5_?gڽn."8)lbѹн]]*8 G#K .Ym{ɰjR%BpHΏ ~A?C2J*CƘGܥ57qUOFwX>w{>rx\E$4*GW% Q`P EMF1@ ,;Vƺ_Htjv^zͪ>zG׷m|noq$R˄sԟp{n7u Jijn&B.,;̉q7W7 Y$WDGSp|}eu޼c{4IIK"!IҍʙbԠQb%Um"S #xR !32Dfa Coمڊ4u=}ׇ7/=SZ۸xegqz+nvrs34jDwX&wb8V>gU%$*bUA:jZ;m\ztu`S{7Nf"@ .Īb%P7tf©G>~n߻^ib/ڥʽܪQglَw[4փu0Զ $*3S`~AY9~!/\C\fZZ|?Y]봫s2CUEU O>7]\].u᭣wjJ+n,;pdD,9o5-?. ͕vվ}vC%T=Ġ!FmSGnֺ'[cݺZ'~唧L^\lVet6;N.bgϥv`+;/2?ǛnAuB=\H.⍋TqtGk^L7]8':oaդ*MS-9fbAU}6Xp""&n}8=αJZx"h+!c2gwh?Lw"U>zTIj.!UqAc#ҚEdqǢ"QļW(tU=fK.!FMrYWqq/Ou6 ][$jN|qٙ*&0V9*7׫k[76/m\:yov;IDATYUJ>Sχ=x5E yhr* .k5 m6ThERNF>ia`>ݚUQíKeLIpu5j(bm6Y$d0f=d%DQLԽ7C\Ѝ٫OvcQ$\D,>e:PQ%0o0\MmeDJVۻ8$ 'ެ"mʖlPlٖ k3BdED&dLe}bowM{d|&gUiW@ג_T6j ` 6b"·4l}}PLD=X7a&(ȅJYko|óO>;=ݔ9n!H@)ZEӦ~vX`Az_$cч??m` R7(mRp6bXxUS2,!e&.J-DPK;Fq"qP>eWZކ(8P*wjgjs8GfmXoN;5~|ux;;эO fk"ũr=g ?Z^kJ2Y ""Zƶ}MLr DmDG`(E}E~a^o:wi[ !6Vn_=x';Ѷ[CQw_ns؂ujw_GG{w[l靈\ ""Ӱ%nh'M -/0C2yr !yJkԦȢ$Ibw\Oǣh{}hkuf"O]Ddb|1uLea'?>{:[<}ÿgynK.q$ F$  bCph͞FZ6!B=`^~blPp׽ڷ~C,HwK F4XB}(/wՙFR c6T\%W7ZRp;X[=r ݗэ{{wV&#W6uv(v^P<ky7`53g$˂\)wiyza'@ƥɳf6s ,]BD;HFq1/8ɱ(9-g (Pp $"#0=!7O?='/YS W3,(@8<B  Rb,NX:rED&dmtbowI>kr3 ʪ+F ܢ_W`y A" Z6D $,5X[T ""CqDoP fci+<:zpg|vzv)s.ݖCwWhuN-qZSf6+`ٓ`mQ'2 ""ڦT\l,<%RFnta@D * 0\ַ}ֆ AC8:."2aNVZv]Ϛ??{|:or' M z d[Tk58Y:$͘è+WT ""Z'[rMLr DmDG`(E}'(CTGGn5q]]NE.4}- O76Vn_=x';Ѷ[CQw:@W9# ^3̐HSp6Cξc KCFYc&YA[u t*8 0LJo+=Ш<^>$#P.rED&"3{ H^RF;zF{tkqv|Ghy9h y:6w# "/?L Ѵ`K."2|g;_50YkfMNGDe.adڙ*ߏ˳<%S2Rq#HD]b/c1m:#br~㍳~@ #8 ·'׎d n(vX`@[Ju]0.Wn?t1gSzL'rEDa>,|^ X[=r ݗэ{{wV&#׽"+ p‘ D-(J]Dd,`X" CLNK&Ϛ,ρʲt  Hx%oImn~y_,ɕPpcˀDdDc3G?闿~|E?`~veqju~OJFcu (LȘek3 #&79Jb-;m\URF$X7jG;qQ˥."2>qYDZ\4KX{?<ӳMs鶄ERт@,^Y_,@+uʊr)LkR1ʙ) 2r@"JrM92 > en"K]Dd"1~SMIв;x͗~G7>>Y,nmI*8Ձ 0FvbSD.4min ,'Eё4JQw*+L3 @=c#WD]Dd>9nH56Vn_=x';Ѷ[CQwL L"fG1Ԗ2qjfr)LF @@agCȜ0kl$+UtA1w6PɕY@ RA/7}^qJChn];.Pph,L I8"{ISɣѭOڽ{/YD*}T߉ek ;.WH]Dd:jvqʸJfxD[vQHrEj17 exzٽNFH_LWFx?>mJ^vGt0tߗiFΜ3wWﶎ?:zދc*e%Jrɾ;Zص[m6s}K}Nl8%qBѿ7M]Dd Ⱦ`H,dHnR`|`DG`C=w.q^; }t}[* )Z9[yL +."21> N24"2߰=n}pώ>ߏ˳<%S2r`Z\<ġЬ~PZWq t}/:uB ""1 ɍf -.Pw:?;oUh}Gm{VRpjy-|ax܂u{n~tLJ{qvǰqNEDWjLNK&Ϛ,ρʲt  H"kG]DdjC9zp wh,rf7_to(gLnkB]DdB^[]Nw6gMnrFAYv[x-kE]Dd"|4†b] fci+<:zpg|vzv)s.ݖCk!""[zmS*5Z9<%sRFnta@D6GDD."2c;vTxN;5~|ux;;эO f@z$@DDf ""Zƶ}MLr DmDG`(E}EFf9D-K:\⼏{d8kͻfH`d2}sq׃o~|xάlmfcycxb߀b\4|o<k ` p u7R af `dN56k*U ܘN֟ڟ*63F1FLan "{vn)n=po,"̴.F3ɔE."2_O'Zw+*YSQnٵ Fq#}׏nE,rq&c {Ny6m{zz:Ƹu]WJEݻ[y9Kap)6 V[qJOA==yZ?r,1‘u]՚ \'[ۛ)6*w%+JM%F:Wߕo:Չ&2S>,ϳ׃KXg֥wDr Ȓ$s dgհc~6d!+l' 7^U/V͎Q~9ulDa?S;zdnfRoSKsw2u\J6mXrdox؇6c.bldo6ԩO0㘆_1=LoD9"ZWj\77b̴vf b,1Y=u'F'7-;J{ &U79tHŢݒEj ڛMY"dfɱn蟅ysoȞǽٻjkdt3y)#NJ]Ng<̪gUɱ ]wnrց_'Ty<=Լ6r,1r, ?]ߵ戞ALSaMK 5,5IENDB`gav-0.9.1/themes/classic/plfl.png000066400000000000000000000134611423175241600166610ustar00rootroot00000000000000PNG  IHDR<4֯[gAMA abKGD pHYs  d_tIME!IDATxŚyUu?twzW C-T@MIڥVL;!Y+NǕrN T Ѩ$ THQUTQӫzo8CUC!du}w={8{AJ9NrH#*JB)J.Vu_떻eg-ιެz*75#QsUF]TϘce)B.N!CBҁst ϕ\<gQH@*x:pՊ_R*9!ҦOpڨ"9ZASE>-uc2;iŐk Co9йdbC_y{uAe; =y/ǖ6Qcniwv*GxxOk4,w ځTs BNR|VUe,έ2o?>۷[`Lc%A)5CQ̺aGќ~p4?Yi&@o}ls~#1/bNmbے)1ABwDo\`G! )o*j,DžX{ 6!PC /~Ro !|J2RȧGl:iNQSXiTH+|2'ssyI2*JxXT$Ā g2|05:3lø 0\&Q҂M 7sw1iyJ]fϖ{_el`k91*T=N:ELx"pa]>𮿧_1 GqL .e!1a'f]BIz n@]f7$i* zd(E!lԕXיHzjPŒiYxF^˿0Z0ЫfA)%Y&*M@f ls>BW`Hh\!:2j{ӈ9C~LQU4m i ?;̘a׻|㦯q!<&W$ }E`Ǿ|%xթr* >Yh,R! B&Iz*`A90 F6y$ LO3dIc2 R[_%4b%`PG9-SCitU"x`c,56?-ˊ7dt H>#嶣;M^{fL3Ѳs\ɋ H*E1\l =$s%FJ. ñ2HmT&a Rk-ʒG<@]\(buSٗAa`F2m|:htL t~I"e=? YwL22z߇d(#G$k\a泟a>~%a!~YḱwTb;R"VLYL9ٴg̕^J64؃g_p"mtrv6a^=kNTZ,/ ӳU6&CGG`2g^Dͮc!l2VI|1)vtAƘ'%>SH.\X] i-g̕>"2h^QMDPZT*6iVBV"& ޅJ}J Cş|;n{t6ߜ0=ˆ0^0iA[)ڌcl3υL3Ku+Me`Υp cܱ48 AXydzw4u3h/n5A,`#Z9<'lGx]IK!OKimД6i޺fIGk =fm˚$uw@d~ h}rHfEL/zN3]2-Zth]0qxM ?+o?ྯ?C\6 ;p>>y(=R/d(_;TH{!:LFe 7c`*[zwKtkĘ~FN{oXIN@ѣOB܍`ȟJ~9\əOXK8RKwo~LAѣGpSG4$?3W7 yKS]/օٗ|u|w9ڈB`G0 K/AEH(U4c`xJgٴ6'rEkΜ"6MRV!ʒǀ1X!=Y٤q/E!NY(wtEBL }|<$7I<;sVlwǣ >ͫǎHjw|;Wqޚ㑝W8er"X`BpB1̐ pǏ:Y;$\ij8w9' IS9\A_FqX!91uG]g_˜,7ZOm~MJqM0AykPcL2YnܠmX>eH,I ˘]~~eq4X-|ٓ+z<Gk:bfvq&Ip"Y'iHE..z ߗ7F AT"P Z:QJY 0ESP_\meÍ_@eIӞ&{^ȷ*#)#'6qC-S&)&ķAOrcMYT)Q y|ʮBL5L# 4u’sERp5+k,uXi8gٹm(xIN+s{[ܷݤ:7=8w%jQ*%u|/[kUx\,8eh U"BR¡08@f?s7~rka#b,KqձJTH'x8R@ 3I}9o$q}IY_eD?A۬H;K!{ZO&zUbhN!E@HT`eegAEsgrރ)dgx"*yԇxGpuZCaB{,`i4X)8' o4ox9y)*I*ľCg'أI%pN|;=>!8A8)!9Q>.r(-Oҙ⛞C*;+Mf7ӧ%3oԸ#D}8m<;; l;j8sǓ~*zzH wi‰GϝhfnW̓7_'ba᳸9r&&iaTf4Kӆg&(sn0ĩ :eslH"tk&/Y.︓s兦÷+| \9j['+ttU\NxY_o:/{]xrB^PX [Z[?BD1gLROӷ>!w^̳UY Oz*1|U+nKOAjV$JF-N {#Hqz]fVR.\ q ChG*CW]a(֭(hh4``D(=6)3QaWVb'l/enpT*YdH/˜eD<~[0އ}dkOOIz4TFZrzh6:FW|f篝`"u\2R0YKdRUtLLTzYuV2CU`~xFQP=-/<|ixJ"NL1t8l47gW LpZzVw g'eBRjtD4uKhE_y4KG̳d@#%(JH $=8ՠI&p HTK4Z}$##%ÒyMiЛCr X|1E\fuB3|NJ87+(_Q)^( t=jm-}I+%0Az!Dc')X# [avrhorKh#XgIEƎAdL'oRSj‘=h hN=tڧ?X艧I/a^Hkb($-;(3ȕA jUH{T{ h{>auL-qF+@J2Cez1C+`XN EyUNGrQs=*8)b^aW]tA%[ w=""|SƑR'GxmFX+|@p&`%1d+YP,4|^haz(N|t%|~c#$#tC؞fJ(,Zg( \QcI1G(  \l/wv8- [͝x.vGG& %hc+#PR!HD 8H |0jo\.uj`8񬚮S$x44_M4z 6NgX3c 9pOiD=B%i_eI gWKܠ|NxUFEͦ2z=<<(a&[ͬ1LyL-qƯҮ9w}HgؑbɃpuD8QEtnXuFj'^ʕ^h AA`1>]w~$e#jeMBeI$t>9ɐ7-N*ʧ(_]'U_ļI20p \5j=QWJDXZdd4ڬ|YYhBNqLWQbyO}{~t}ٚђ`U )NI$@9L)kEJyh־h5iM+-ǃKY )"itX`I=t:(0ƐeٿNkrE-y[^j* K;D*%5^x?aF7li#EOJ@߰|DP7~qw0T\/̑mL t )3p/|\+*d}P}p$B<"_/~˔N*e!K2qa*t]ݿ ^0fQ.ń`\Hzhsjֆh e*;:x'߼F=okunl H(.UYzB\&4R$8CY0_FM 19ՙ]4&lf3ÀИn3c:s#+@v%i-mk|b!v\2/=M|X7Ux:]΃(⋷~%J8*,_@e#L. |kl1[6] DtkuHJk̉\+ۄ Z8u UsY}892=Oz>?u*N8WdnF7|]7pdt@[t>D+2*rXy=8@k(5UsJBX4#ֲdҲcI z(Ch,YZ mR[FYr{0y=xU_}o5Q(,SLHw)jEGGAVX PmFyvAce*!_JJ )4H,1-;+4l:aAx#1eoz~ .o&HƄIBl'ȗ%@8D]Lrx'la~q q6Ìe6ݔ#EO;6gvv5rSe@`:j''S!i6 +Hs4 Pvpv3 ެL-&#j,iBFsv7+S% i q E.;rB <)_G8<0.gx̋ =-z? Z ?fG+qdBT0 SU6 hn7s"w޶FvỾu>N~:M5%*[y__NUy=Hujs~w#ihc3hc"Xk _tɭ!51SXf:saTNxA3;Z7vߞӚ_~᧹??DBȰ꟢)&s_}2 >Q8BtGKS( Fe&bwgjߏ{7 Ӥ(]TmvϠmĮ-h_B(NnSc{U^G^]P %C~y` =NA09LFpy5IY8n1t0V(}{lbYu Y_E =@ O^,◾k\ Q/lw>= (8oO֢e Jr  $'{;Ou6Xgƅ gl7!c+n=vVR;{?e*iRfYB 8@k e~l` ёm۩q^qb>> +U)9_zS9',vo7Q\=־HLl!*;8L;U֎¿} z%Q q^w>na$ ۞V|ml*ܙIqg:֕)R+~A |`P@!x8~ͫ8FrOYW$>م3W ? LFIlP^qk8!U&hF Ex9Vt]^}yXuՍH=ya$Oõ\L}БYAމƒKwBN %'x/8%g8%g!7l⿌\5l+&O0+kgOPt.E 8W<-8}\q WN1Sx8>w5&PYѹڀ_'=hO=וG ^㴹bCka`k'QDmx;"~)O(vt0*o"$ıg;]^>F/}UORlY'O?)9xnAŁ'KEq,%hpPM݅.泛䪅pS|rF lc-;(L7c: tU曐y`3\Ҥk$(PAx@dHY|zGcM}[R D0%XrP{k/>Bu~+V*W\_u-ᝳDғ]Tj5jM͑N!G;p&G@X7(ʜFXP#a. `R W ~E2hXNv)5U|d@[P!%q,c\ս$γI ^7!%9mOIs*.NVkE0Q]iS1IC@,v'q1Soۆad¢mq5g_f.oAy}\8O_6JS2qV` LPjRh5α,}Wtg}r$3R`"䌘׬`OƎ!_aKm}̎یֆ(b؅SڗXHV:50^@.Lߵ9Nt!SˎS/F.[YZj:@ER RJ=5I:rn邌zt]ԙ,]]#088x =Z~zBZ{'1jڎK;cۉRkxkx!PoZDDJ?^4ge ?R3 pJ.X7T+@3IhH([/U(EFaU\[ܗ1f4 X&㿍vR`dlZR9~4YOBC*oRџUmْEԧhnUHhHƷ=U 9—fףmfhFsTl )NO9,6q4[2i&!6u<7 Qf4 А5N}`́{ɡT=Eڛ7j$4b0ʱ]C4ABC*zhK뱺N]ag;wRc%Û |3"Ќf )aFM42ST,ǡKXY ϧѬ !Gs"k[}&`/hx$4bYy?%3h5|fRpV=gkS3 c%nQ]aR>ƕIhHa ݘ??<+׼5IhHEIIhIF?%f뫜 8,gnx̦m/3 mkר%!%b4r׷.43+ 8nкO3O3]4P!!$ۘ-M/翋ZOkRpLIENDB`gav-0.9.1/themes/classic/plmr.png000066400000000000000000000015111423175241600166670ustar00rootroot00000000000000PNG  IHDR4;N"ggAMA abKGD pHYs  ~tIME 8 IDATxQ D㖇9~[$m){.Q󛽔4_PL@E $4bDڱPOxoL4LBC(C8xN3 rP:c{A5LLBC($F5{3Vﳔ63T3 П 54a{ ?vZq7bƠ&!rQybWxx2Y<{8GBC(ܛp}QN6{;&!!!h,A`IENDB`gav-0.9.1/themes/fabeach/000077500000000000000000000000001423175241600151415ustar00rootroot00000000000000gav-0.9.1/themes/fabeach/Font.png000066400000000000000000000032421423175241600165560ustar00rootroot00000000000000PNG  IHDR6gAMA abKGD pHYs  ~tIME "uIDATxK: a'uK]&[UlH7|XC___rz{m ?l܍ƁjE_i,^ֳ{g?jWa[_5ۯڿo֟zT{inTW}jT ?ڎqy>\U{]R+OUӟ[늠0vlQyFvzmw՟U'zVǿ*r|Tt>zV?jʫU)[uT_ԬZ7ʟ޾nuF~V}=]Ucv"=eR^?wڳU^[g e_mEo'#wӳϟק 9uJo|z|Fx#w}LVv[vGRg#ogݬuT|}=TYLdh=3UGagw׈ֿwzw;9/{N^?Ok^?}}}o\[Ǐ 9&(z`/6OUWGY U$jT^af`e#o]4rvGy뫊mjz=]U5ߝqoh}3qtj`k_ZPS^_m,W)ʐ辕-k}n+}9`_G:c0[>{e;Af}rώ/2F 72g|]qnOwhZuSD3֛^1׽kF{;YODy9=OՓzV}UWe:]@Ut}_f~j=/VvǟU>~mou=euh_5o۾U;Oc3{^=/aW5GZʩ{SΟU^}TCZ>-ǝ g7ڝ gb}ogPe vԌStv?jF@ԊMIENDB`gav-0.9.1/themes/fabeach/FontInv.png000066400000000000000000000032421423175241600172330ustar00rootroot00000000000000PNG  IHDR6gAMA abKGD pHYs  d_tIME ,[IDATxK8 $ՋK.Ӄ.U4@$|XCK~^rz{m Yg6FUjۏj[zme=~g峟{c}ʭ^_yۯׇzW߷̿lUKY=QqPj4]t}\F>}5*zpzϲ8㭧k\vW}nc mQU4{r~'Vߺ"h']19߮muv^y]-ogr*]?_ϳھ{UGV]G#պ5k|M=o[Ϫj}̮[d |?A*}~gY{V}#~ܺ?0 ];]?Wun4rz6"!V#N[Oo=c}vH/uDoaߝɪr{noHl㬛5?9~YOׯOAD㽎*?S~>V9|zz}hw~X߿C=({4WU%zxc2O'loD\a}u|| QERKy*՝vjV6u I.jw$HvqޮF:UUYָf7sGf 5uyrUr [oߧߗv?ݬxd˨3QQo3{)dX-w{"ad@{#sOgFy뉦Q:|>NԑUz2՟y@?}PNjwD#HGՙ ]j֩nΫvq8?v#㺱k*s5ZV/o%~dEYe3FW|v#a oY=QEU=9At{~y-vEDG׿z>Ɵ*mw-]xJ&ğ-j?QEF2vLSN-)z}^u3U"{9?o/-7;d*۷f̝k_f[uV3xrQIENDB`gav-0.9.1/themes/fabeach/background.png000066400000000000000000001610201423175241600177660ustar00rootroot00000000000000PNG  IHDRFrbKGD pHYs  #utIME 5cDN IDATx˲4I&qNR}nAAh#`lر FFdVܺp7ef7GWY'Loɿwpsוֹ^ ppUstmq$87gϸW@krl׺%?4mͽVl 2s}yJjum,seQ Ọx@+2]E*²Wq޶ =*׆{'7Y!b89/ǤWb_G Sz|Ag1t2]}P~fV}oKPu48tz2pUzGƅ;A4xZ3 3ѦX/•,=CU` Iy{~NEY4q`5a59sqjZp'O\6~Pa]see~ j_ض|7۫Lop[3ݹq+yjg*f|8aw N҂T}Y,w+5r{;9 &vI%#W{+ z{y%I_JO,wմH4xR?۲ X+#szcI2@53Z6k40wb\IFW؎_ob"ixyU6-GaT=ŞnV1<7f&ʯ3]Kϵkf(\#/0S5;\9nyz&|H(ޘ jDGaXo^{姑 k׷6}dozb=1JK~rJkހ*V)Fw^~!#yǂ)zUc Tr-1D0CÄT= `^ugU1D녳vyg$x ^nu'UOI]?-ߚ!{f’Kr&7{4`3\/1Z|[M~_[wu@nua~ `n{su]x[7):}uz:zW狠:=pp/ X=ڛx{~Ǟ|2[+zկin;I9v5=mϣ&#PIO@{g+.gtG*iXIu .Uüָ2$7ekEZQѵ}3bS64к}z32FQ4mB̫q"pL|pcZ[ՖFWb."fhfvQq",,W]k<3 Syzg+@Ffw5/w\XEw]26\zqv|i9|5ӰUM\Mtx;R漳S fE/ WP]^c$}ԍIl-/'AlD]\Gc_".IX76I_Ʀ[x}9U.4NC-Uuk꫊\`Ƀ8uɇyz=NOQmz"nؓGD%:}uf]ҷIX<=,>_m <&c14WfY2Ȭ#{!yU.?+[6.ud\-.{s7_7\gq<.86(O$䋿lǍG\~Vp yձnͩ+c&CoL{]et[&[kOp8kmg^vʬe2z:nuF%Op8&`m"Nܮ9Up{!lEXWIFTQVߝrG9fwUU ޲Uj>T@cPǐ3߬B#pԵw>s{robNcWъ27v¬=\Vǽ#My?O\nn6|;hb扣ؓQ]õo>Xk~@M A/;a8>{# |cGe`X,P)^GٜWP߮T=ᢏR}T.;abTuZ%(d2Q5hl%=?PNQ; 9SŔSk]2nFL U$Y~]{aE3/%tߵ]2)u>rITَ9ݼE7,^;$T9.o sݗ|=`%G=.1WEU{;;Y}yȒ;ͷs5%ްxE,h0Ţ__r )ڇwgauers]'/Az<Œ+B =}w 5{d"VшY=}Ӈ= q]i=ՃWh-i$G5x9x$skc⸷!%YP6{N\`'xb|G 62T?XL^rЂ`Rqki s9ڽlw>.,.MnnQ[J|gvL ëG jV;؆kξ{[5ܩ6nevQ_DZkcÚgj wp$ܻx^=Hۂa!mMplm$PeV=_Q'f8Kݓ+ۆ[$Zݖѧq!6BUx*6LS*-fn|چ{^؛*AQq(kϛgm٬k]5][yOQL%6mqar+ b)n ;k.ց]MNiMl;}93vf72X)O2Q}~, o=~݉m{; _ֺpT*=YEv=tx na&wЄ>ݓo; 6rrμ5Oxk5:{\yz[V{U).Np^$0> Z=ὧggY驥(Q-ֆq< {t*Gx {Wp,E>>'a3/}/NwxqN0'V{ع0t.=c k V?*Z ***qrKs#wNwST@ +eTlOφzP:3ًmۭ}j B^Ef@.mHw, Jc?\q?\ߎѨ2بhfmvo!Q7;l\P<; ay [}D`ںw`q=63VMY߱2v'M{AssGñ:%YVgu*U5zю6{Rp/@YW*=)df^.L;upG Cw37,ybF~.O/n%@ co;Ĭ$6~a`~KU²joNx}/l(фrlTKsVVF<  fBU"s8)7`H=B^#:>hs%r^w8ߞKągS%muؾe4p,ץX%-#`혼Tvn_:45ᩀ3:g-XV C3v>q"w%p̈֝k4W OXHE)vCGf0|>Mo9)tjv5`;c{[Tj)Q=+Y}E}ݢ)/ٖY=[ S)%xZTD uRTڬC٥ =BUԄ}cVưxlgFTќv)fbdz|'.>ZW>x&ž W}E3嬳0St>= kZ"{p7S}\_caq {10b/?p$&K1 x[noYx:<^t{Y=w[Ƚ߹_rȼv:c*j6:p3ޏs;Wt~Mov\^0Kñ. ų+$m ѷ iuvoԹuñq؁n&ݍn>ui!dcqlDRz*T]E#> t7ywŎu ;`- ODb5{O-bK_&c߭B4ebsy@}[+pB{qu-U:Flj9nRv܇;-gTL*}Hxxãñ_<2Bkx!^}g=֔3xZam(80&'0p8Iirx)^\(ΆmVG-XUu `oa!9ص;nƞW4Ժ71zX{ܔ--ɥp8v#Ar(jWu;*Sݹh8#_e4Q;S,;;t:6B*0 怗$.^r=.:Dp܇ŌB|%gWE.•n)vWAIc`?k*$\ hXWgG'LmH&+c h;\'eMQ=98| q7<[KGc>;j-1OAǞp%)҇E1'Y~\7XN`xhO |r1x"LJj 3RܢǀkOϡ'j8Wk]ߞ!,[}{kq/qtwmG{",c(]`cn CЎW'|Q1B8օLXg'^ #7&`xǬxb:;}UkX&sUp[{F8ЅKo>&{E<}܁md l-.P `IVAG{E.,9]C\Z*Úم+w[tTISLb3v/ggvτ.wv{uiM*}O >wq*-Q1|w]ѧ{^ӐtE ]քʱNgvzA =d8ufxl..x x |6-r;puUy=at=V9Z` +X.!^C&{djf +mHӱS.AH [U ^|m~럓kSx݇q}`6$jX=. e0o> >죕cc V2pZ]p }GX)R[ئ1@O#冋ҽ>}6.RxqQl*{5l(9 kVn&aRl޺9[b<ݛk>,{ Zqvы`xrkcmCz޹c!6$G X#^Rv?uR|issһ; S9a)9tkf>5'a=;q9F LcX4bN1+} _`m)X'O Ø٥ <u 6x`9%p>;|֏^Rkk|6gLڱPYcn8:h=fTF 9~z<>SY ''10.]3>i_m P\Ǽ][q Kkg:EWO{1G's=pv},o;ٗ൘~1󞄵M-}Rx!w 8BfP``` L/"3 20 MyB+g6Jd,ohu'2 "2t.!1h1 zL)`>K&6 ݛO0_D`bJG/"N; " !՛D(0LԎϷj?j*wɟ-b GDh,rbL* r02#922#`0HŅ%R|c"+\zB%#14)V៑|j SF@V~M|+ v+wdZN-7LDD|*Meˋn48gEҀo~}'gT%3iD(nΧ@`F@6Ĕҋٳ.XƖUP#<k'[ w1ADyd`fBf6W{!Ӑ5APfu$HpB#p@ H3s\!qpq+Ԧ!&ZC^1#3 ` $(0 J$f0I /o%bb9fxGQdDX&r?BZ %ǯ4_&"]d\[7#\Ko rDN?2vBl,l*3G&ag}@: . X4K%p'bAb+>pys玅 'vGE8QFP #@;FMB c XKidhqx D`% |,CB;pv3D`Wvq)`"Z&LΈŒ!3ǘߑױC$fdlH@+-[kL>5%%ŞLFhrjz+`<}0!H1n4!)@`Kޗ7OGj#fӿ!ʇ~Uc5NIrZ(v+i$jj&a K ,u2j"3\"@∌T=3")2I(C:.9(L7IA2+<\V >l#HEʴXa*bOs1Gx%Q/@$Q*LZj[=Bc0Q_(#bR j^(,not>Mv(eQV}5)DV8 F/d(cfFr ;掙d cJ9Ax6 fO&wSsEdb>RsA#:H, 64Zo__}~"w H1)b6G,uu_W Jl e.}"ag@i ecNCV5 =cs$ftYx9 `Ъw+s9HȬ٠3XΪ^Y<gSR <;"P2Ȍx/EiR{f@FlC12E'6'8o%3с4RPLL Ndd2b~l 8v-p" @B%$6ʖ[h6mCFn"G>0Ert`5bn#ȃeS`cbPKH`$Mu*-@bj?;kAȖ#1D$&H4D@ p6**f`#" 15@ f0D& " "! ;{ ZH 3L. S 2C̭'9uQ7"k#F 3#r I0!-tPx*-M2(y,yoޛ4ѨX DݠNذĩ6b]dxMӿ?HpG$Mgٸ;Ne`G=RŠ]0F@[14Y0\M_ h;?;eO\4Kb0*s[`goG}1rd$FfIm1j!X)8TZ~G"!5H@ )69%!4t8ye4Ϩ~QUTs 1MֳDh̆WtRrr0J,Ӻ?H):+{4bHeIe9`lPW/T/F,BID:PQ+FHJጶM21Qt @Lq%*`7Cmg&3ʨ8}+Bֻ,38>Ihp>&/Jc6DF!Dw%Fu*FGoV"FD&  #"b"Dd2Ƣb(QYRX8R⎑c!"R¢$>aҒȺ!;冥p8mN_r 2.*ś{[+)G:&I֊]L:&GwShdBAhbneAaKUp{_`2ze'/-65Fq=kb6+GЯdb`11~`׉"3i@A" ff9]wK-.m`285KޔK4)e rV^Ҁ)iD˥:UTB-qߨ )J{Yre1<|-W.4!>1mJb}1O!w h$BĦG] O92w];]w:.׫/23w9RʴgNt|_*A!]c{—}ppe/(CaR$ʯfsl5 6BN:Eh\$[`W4j!{ڴ)uJ"UsC̑9#r.;].G3C}DDH #^: z5<_x׳UT>] 'st3(rD: "pjRI-}2\fQ迟" rԬ"B"L`4 D+M.Y1yD ~[m嶔m[ 8_#`̡9zOŋKZ͂cxJDrȐbJȀȱEI&"A+*`2`"kk!CF&t=",cbQbd[רFLAɰ `sCl c=c-!x׸Ō4H!CӔ..!* %i5Z;YXFP:€oIVL&};r$Sv jEPc)^'c!#$H,;8G u"%d1Eٴ(øָ^DddBdn1f2졉.(Y^O_[--"V.pc{lݑ?; D C(P  lml8P4e`0)rD0 @̜Wр!gђcwD`F6[an&a Tʌ9"`|@`ku}rƌјa2GMH(Vlil .A6ϩf 'V$bC5\:1"59Vdy vŇ`RXP$Q'֕ }u(&^@"3Bƴ-[9f2c}Sk~Y7-9w:VJ*Jb,՜+c o!#b2Gxuޤ[Z>& jS8@dZ1"FF4WvL R(9NF$H2 -uE ~6˳Wp,e]\9"D> FRܷѳc@  Z#J~N)Pͥf˖܋FKu*RF*a6L;*شhYfE` xd 1蘥=KH},W?%3(# CigmnBDŽ؄[ӄ0  "rR8c` ޜ 슬T}F[χzɫlH9v]-q.bGBYbյ$C(eC]@.wi_t}xrY QHE}iP! hbQ@TOG9)s+V deYriDQKָ\~f IAQ :S2k$ŕ4 I\9F!&W*c2w{M: Rd)M@d$N"zZ (rI S*L hܓL{CإvV>#aSiԲcPمH$p}?uGd<3Heln|`Vd0YHP4[Vɓa5ӟdehs@ IDATV=?J䱉REJ2&Fl+j?b̙AQ7cLMd"3>/ 1qk~HoD ;"bl4A#Igڵ22˦ (# vʖQ@s(m"%Yj]cc`eʾdB1rEm |o9| !Qn%H%,&svē:Işe|y;taXTcb*bI5X,'9vJ^"2D5ղƙƵ,3ԟklɏ%c=a̺eFc+@1,wKDF`Fj(f H!JOz-2h,yPuۢ랤h1."صu"t]+%BuDM^"2>qĆlpZG5Bfֲr CY֥Μʢ]t`_r`Q %MiTZNʳm2$+r ł:2c3\!|a5g:KÓHE!$1&",C[$Y(Dl({8S؉93d+ $ƬQ"Omk0X#ݾXw9I:2ssHQn\f4e,3HJE/s@rAVHp P_տhq̺%3 sE҉1%%sb6YC6ؼ)fH&`6uEyU?I, jN`ϜuZs)c.l˶Fs ilL[9Kby@mHMO$Eb,/tR. wsKQ%L-/luFybjEY 卋)g8e~d)#r93lS0+4\8,8[SKl-b`CcԈsdDVT`FMfl)/ R d,+nT։AU[vK @(;HBI"V9;*N+߈LuYf#r@!&iB9вLU(~3/P"\.=A&O-I5Wǖp py y'q_mtXG33iɖG B[Lˁf}E}vxi(Lu'MB·w ̇_P+9U?{ ]?3s] yq<ٖ1ۚ#h ]RdQ7;$%F5ijYDf9ObLEw{"/z&QKn?bJЕ3w9/ ڂ) 'D\Oe(P.uIVPZ 6)VkO%':e}G0u<@I>*Ѥo1Ʈ~sv#DFy1YgR@.(W:rTK`VQ`CD=}B蝍h-Mw*Y[Of;FԦM@`Kt{be(@q@b`;BP}.Bt xbd6ֵH>?"B)ha)Z \CyV\ŕ/09s(+^"tP_32>@}0331s$S,i?L>ZFgT<%iSzϹhC/@4EnnB\k5$bc'!I dmc1l p XC(ڂd`(oe9dw1O:a7oooMք@!ҒSrqn12CNb]u-m۶o>>#ȇoC\@L6>VڪɌ8RkLJi⤔|jΨ+v]e@yI!DXWi]-s:Xxl#7CnBHkbyDJu]8"I_6c(Pd 0JJ2@( HVS@9 TlI#3ܾ?\BOPzsP"Y#@`UV]â5=SXh! 6( E]i?2kH)јVnhe2 Z#A ??jo(ROh^d!5Ho!1 "@:ؽd.~ ̜\Lcl9O']DiO4PٓEF41۶YdSjY.5'׈v5uuG"ϰl !SºڿPJ+Yl _|\ل>{1=}џoF aD$L1];ۘy`6N7O^|~8 *RIڋQ-bwgaHAt]Eu;~<#(4&10c֋f̵ #@CGhFyG)c1.FF62kYأT%GTSjuFIIDID$$- -swlc.ƶm??[f"w]Mӓ Z޲Az&EΊE[%Q!^Bs0f9$P̬Y߉w V/ ~Oj!F,eWmDD )GC՝_c)mV,-68?6 }&1Gb99,#' Vel0)Eqܲ;DNGm)4:pMx:E rR- 4R9ygXA(ːl3fbnAb_2YұP|IqL֞rDs"'Eq ^AJC"3H;!23v,0& dMٴA4m9y\ B$ONz6ļN)qR,fJOC4zC&>CꛨBK@9FQ̒SO Yy?~وDφc91s5vZZkBĦ M*m:v]vmu]v?||m:j"[' C!U2'&ł&s4v1!R`9 ~mOsBg05pK!X 䯔}TQ1)۶ZYB=IP_jm'#~'O@D +LXȢIN$)O?C!jodb^\d3iե$b@@ 9@V"g!!@1yȨC{2`$8ك}1I/@ݗ4 9U@a_ &byf&w}.7-.w;!3a7./h/J# ʍE-iEjS}5}v+6᤾b "l ,~!/d=9ccGL@D ""tÁ03do "h%`FtQ(mwRvQ1b(ej1h !RʶeZ1[\DcK6 If2~{?|.fICI(^g򯈺*j @#Ŧ:yƮꨍGl Rn 7| [6hy(石֚^HBBD:!'g{,?|b6d|7ˈlK5EŜߺ`$FR:ǹ$ډ.'bO!o ahďc15o߄iB.=M`P2P1Cd9$e'!Q (Kom4 1G!`4oL%9w'RȐF8iI.}/v,AMEƎ5-E>2Qʞv{JMSr ,L(ckwIk y1ʌy>FZ1e @#B~U"3 C+.;PqZanR^dž*.kFYFc,m۵ǟeJȇC@ HO֖VAسdlULr[YZWLIlCօKƴh@0S _- *=ֈtU3S)ڬcrL#۬mg!nFth`޹>A#ŎbJ4ti~řƍ{ԛ8~z 6 %JH\8r((6gz w'T\6>$dY_p^L{!.v_#w]!#chCsxC M8pa`FZLf@Fncc=e2;PHOY17D>ٽ5BsxF;У\m$9tSM-9,N9ֽq&b2RKΟ\4ʻʒoq|Lw qd B{ l-i<7\9GyUgy|ʯ3sXY]*86ڶkdfDODDil\=5]-HiEmiS<Yc~L<Ӊ 4l.>zbC?hf}CZPYBL!`αb㏘ʸ4T8,{h$3sg8jge* % j/bDh+{)cDr:)yDWQqk Ӗ^eN_lgx^!K(Tw)/-``J'5m EdFY#a!Xf}~#C9Hb4̨+C#.0!%a`k7e(<AmCJ75i~Dc 2 rHм7$e ¡P#b\_!Il9a{b]D$]Tr=N;@05B/+a4c=JG/8,唿E:4y~u-(akBs, BMATG}(^ڲOn1F$߼5 !~VAhId4\[Y@ ͥ 1S%zSJoR/B,9oȑacٶmEpd DԄ@M+ o6vcC5<89.*,mN6 W}¼v=w9ێ$OI]u]mNUXDP<m:6M O6SkVM(}z4I0-*{Aw8ɢކQ2]$oX"+y/B|WfGuI*<.9;A^RbS|PʹJH30Fula6[<$4"L;bYJ V%R'0ÈYi"Lnuj ƎG}gQ4k"/l*gJe-dSC=ENf{mwrSN–h3b'E s.|B]̌D1J#R8F$j]"g_*2E6"5$I".SҰes`1B-ӆL@Nej cAѪa gd_AbnDjfN<4{^{vFPG6]~ g0]׶mvmˈp8IܦP/Q^r C_۶<~sS@ +AtD.c,MG!P5 |ǶiSٶm̟cƦQ2Naٖ{8[:S,!sj45P0\Ң! v "J6-4T5T&P:WP08 Nz_^0Qw#Ej)  :E)2,k{^$eJx |7L$*sD=7.o2bNрm ~s ï_bCoCF];ev64b߬ZC6b`tf~{;̡ iInytn,w{ٗ Ugb,A2X x<-Q ڷ*X{UO)P:^Ly2AauvZlRyZgN.:kX73s۶bܶж"AaO?Jڋ5C'I}/cBFl)F9@yz[=v]w!S` ԒX"Z0}l" pr48u<*64 !ZlNz͖p@2S Ï ztW4vlbvB.+g;ضضmsR9ք&]&@nm[޴lyvof9~)=L'cD[2:) [`Z˥Hrhhq,ɸ0v0B$F=D(ʬDE`y~#f FLhV;J& -XIJiKF1%t0B8MCk9ڈ޽%6E+3P8OG33@BTC84!4HPBϾ"}ԈOvec3`Uc]1s{2#pwy7J !sڨr5(bRCikr6mW k.2n 2g1j/z~޿gҵ"ٺi~֕nW~N``vx#_` , r0K+q.ykylۮmMsPZáy{k9áysWt:C0 x[TXt KpkSȶmESn0JDLBm@? g/uZk`Zh2+-"ch.Eݓ^qwK(Q@1r*㱓G;O B(`!FKqv.Պv`' ΖLeNڅm'ޱIُPt, ^T08ZS"$KQ~mZ.;g4Qz/1^<ļxҋ~O1RKWfkyҋ2KXL urS ] aa~32TsyT_,*y֜(梣XKaeP0ߢq[kKWA.a~}=` {> -,lB,vgUKip94MonQ j..!`syhxyzZldkU1Z!MhpajP},.ۢXO HDÐy^ugDn۶y[qćةZz0ݝ=hGk/P!6}gP1ΰ unEcLAm0˲ 7F95(7=iv2 ޮmYiQɺK#s^;KzsSEnųAE.\vV23-K?|v+FHGs%c~~*alC ̉~o7<قQjcA:ܗ,!o#.Gz-r ˗Ȝt1K|vU3ubMk./k }>_&quژl@ ٪kxƅ6Of|;DGY pY_XԨec.x2-yw(dDovʬ9횆3vE瞰}pſߜi+ӺPIQi3jLiBt0~w-z>>>'{YWJfMqz.`1yY'rg}Uepۘu S9y7, GZUG8s?9%]L}17ڕ$+A(A0`$ؖ(|bZ%rsZčs@?[[Vd xB%0FN5=/&ݍ`iB&oQ_ȴ`δW}8\q4|)=!S[ڧw;cYׯO"~Û"1à*M*dkB٢]yed6AdIcf2'!_- +Ћ͊ֈ܋Zȓ39F3O}٠fp\Ы?5A[aW\j*MXE#IkP$=T?ZvuOl_RnuhIω$\ڑ㼮vض#~oFδ?ЯT"!FVU*Cώ5 ͛d0^UвѱuvRdߦݎXD_||;b׆ \_:! Wg\MΔ- LBk o%S C mKLs(FNvQ" Z<^KDD8xL׺Wm '%A͝RȜr&i8:%E K6M+?rӖL3 7*SCхyl}jq&筐fr0)h|?\*ĔQ8 V &v2%/㙰}DÒТ6E-E&ck4}fX a8۲1G]Wk6 #% c4%|i_W~[ #Y|Vaq(L"#16jxДo v;w7žr>:Әޮsn=D9TpcZ=ӧX9q]!$rKro kK{Fo2.A)II.&hdžS{q\ VFDLjo2;FզdbX'7D»ϳn@`o;-f̺P\WSwĽw; ﺮǡ(\F} \ay( - ޚlۺu]6m-ʴNL.,)NHsA9o 3AG&SWWV"\O\2i9$f7s}lHl`~F8@5KTFE]z2GIahS:)/@ǹZu:qg]oTo2y|'j 1L݄WFw5 .o*/Ȳ,/! Ab,yĽ)[i蘪:z% x9MDaFD]PY0̪2z&r+4ݫ h4{}6&Qkb%,>W뾔Nߠp.k'Tt- 絮~n=#Dea8}_}aج85JDgLB%-?,c3s!J I`MQrG}ȖUşbhPÓ #._C|e!Sa4RT~oiɚ,,@X453'(d"YjJ mj] 'U|[qD Ñ;CfX$2DߘeEatw3Ft Ȝޠ؜DZ"ߺN kvR33XU&ECtelS@t/m[}s1G5 z7Pɶ]͠Eya#ۚB-Zc֓.%Rr]_+G:+d C eof(d22ffpXR%Zc֮:́V,e~SJJ0*MF!!kJd׼C0ܣ:N_8|laf] zHs%AѶX#1}Mdh9gB`>bFZoN<9Ln¢0'a]9Z.ˡ:趸ֲ:6#+19ؿ+pg_S@|Nuz5g&uNoUg%Xg~(Cv?2& oU ^m%"C> 3Ć3]"z>__zy^q\ײmy^-Sg9:R3[Zue#u1h[ jxSrQV།䗕0gBᘉrzn6RszF F)[P` *LR!h.!U汽L rb8I=ܴ "Ѓ&\_E-Ȝd` æ,וX25jJ-Bb¥Q D]kM2vLVz!GUw-Ȕ21tb'bVSŭT `8ߤ 7]?Ƽ<{ t۾HGi4FR*ۍ\;CXt௯g' OSC[*0'V7h>A*bߓ$mi]~*􊇎MO bdk|=zl53t؆u,Feb{@u]ڶDrWN8I4" 6#4n uoxa%% bҳC@eֈI0;Kc !&{[8zbn>`[x;c#V k2LQ+^6\5b:x&q MZR& ٜ6eSTcFd'd\ϼ=:}y^Տ9׈*6p8XLV95)WN@w;:јՎ˘pwMt053L}˅z&կײ|^VH__h۬F3umQ5.AxM`'w5׊˲nmN>:|/@&/O'g^kMu`$oQ"maH] {y=3;걉'O KgukOiQ*z 902whTC8eR|ß)bώQ|%Ca@@F^9&M,OOgC??ui!Aw^$"vx~q.__ qm|:_"^NzU|Y-~NPآBE<++CkcOcvwQ2] %P 5JNU3K:aR)~9U}Uɒh=nbSt%ȷKU|̌{Sۑ5Q;S*c#eT/fn}|p@0x<:Z (v *ppIsu u]Zm[m]O Be:Ǖf v+ZM- gAHFqK-*yNۼnþO-T\M˲rLn{#z<}mFFٴPkMGGU)}yozՉPk\b%&FBk ߫6l5J~͛Y}JCPpQ {K%?I@w^->\,˲ĕ030rLx24FvȵxW;5Y.H YIˈb̪DgKV"g]qG)h؊˅n:d}ܬ.|XC 2n3Uq}ƆM.nId\/NF.-V3B{-y"Ļa?ڲotĔ]{̼mCW%iv;ܶ: %}5GQ.NC☩FoBm*ڗ*y@tBbΚ[IEl;Ǯ8wh 1fr N*8πo6xkoi Mv9W3L=1c*]Q,0jeM絮u:y Nb*Yew/anT`U:|S^}Uw^S8 9"[O[7& vF1TMsn=wr's OC2`-Eh:6h[ץ5 wc n-h9P6C#Vؓq29~' M #2]J$?8W"tx M@*oRќY r[Pb D&wLXG`˵;U֭H.ce|u]_#S7/%?-@zt5K3O-{qrIZFf87+44v)4c`)pɩN-O }*VX}ϔB r;gKm[)ʋ+oڜms]8:۶}g&Va9NsĤY+Ew 74hm,L-H=]668R ]Iq\ $Cdk`5CRp2c:seRGfǜ:Ag%lҘo߮3dtdj"yu:E|7WlCQwť&oIozjuV]Cwx3[kV&4)[a} rb )ejJ.dybα2]QJ*jLa8䟝)6Dq >t"CR^]@61g; ?XIwbf1i1oIe]\;4PgIo\[J8[`b|JJsہ*(Tkf-QhsV4)0a0KNYY0|D`XJCM+~*ünL n:E@'.wGv ;߱x7Ikn GQf3أ['xYa{zYum[S̮eYe,w`2=&*նm}<}}=_-*;/u;bUCs*a3Ƅ3pТbZd=j=М˭fV枓l¹ +~ :j5Ed؅zK`pB+Imj V (Et@4 &+3~D2؅ ; #FfKPF49m68+(H[kՇHe,Mx# vV'<ˑ ',>ib(]9(ZKA HTAS?6Z|Yv/XXY=~$UW rrzA@TDa^7; }PW:H?k]x<Rz_ZPQOH¦ Uz㱵9mh7_|D1DCwH\/Mhh|&I@[إ.JM%hK ~ε2t:DDDףwՁL'.MӁgCf$Ӌ6 !8bpHjyэf eH W&7 x}b߀<ϯVt$&b j\ 0C^9;jV RN~aӍk?|e_>?>`&L)"Rpֺ0\oT܍4w1)0GR{JvlYET &d2?Άfo r|tN9$UήĀW&l&"ݠ =rsxRB9{"G]'bU/۰ƾ'>O?Ϗ?K줦0+)9NWֶ]G5}[<_+BH؜jDcm%z~}=e|,x0n=މ#9K%ې*+xNA+|[nEDWBޜ< n98X~d8!g}0DW6Bd:s}Js`x%xݍ$ ^+0bD.МrPxbI^ \P#V?-K<0J'"`LN#\i)c7L%gޣmWX?F5f_e^$#qmtLwN%޺Oj)Y0KM)85I ]󑜝=x]u_vײ3!E߿m'}~Ύ uY@bX(" s}5Jcz>ujB# bp4&Zi88>ҚWЙ9<@k`X=bmҤoe J}8 uO@р(f)qqt %mxn3OH>8{92yW.%?~orYQ4kVFtr2M ul/R|DPh5't2fi؎9!AQʻ~ !?7۩kaxr+c-zLT2|/Hț*b|vop>Sȷ1qn; g^ <% ˚>dVw$.3ER|Gx,sBnW} 'FSvQtcCTOb7PJ8.E7J|h<.˂BQNqzѲк.Wk~mo9!DO:(:[,Bv paD:.Q&Rw>ߢ:"L@j';c1-vH`&K|yV >毆d$h3D # w+d#-s҅#3JHbyրxӈs‰(EErzʁ -f']V/41$+H[ŗzZ3 9Ĵ$ȮANm|*:0*đq&8F(جZ'  PqKN*V5<Ƶ"f|r]m۶}ﶫr<j.A4\֏jˢ/Һ\>3nm7nbEXf9IbHV#i{V(¾?ȎM!J snM|X~Ɔv'F ءo>+>o'(\~,VO)ߜ.mz{s6[>.)5;U1#MPxT:š=FFQB6CCgv c'̝e-&FЀ#1 =c%J1ͬ(- |pdb2~ƐأW ;],f52_7{{b4-=!e[`esٰNїf*XWQh7;9dY[xײʿO0IJ_뙨_s)PlgN}_u7e}]mqWsx>>___>],"r纮: ZNh ݣ(J2d+(%IqLJބd; ciI8B4ż,ee-NI GIK|J~/Knי+A H{.;o 6jE˳*V7}l'$.\u5?m=q`DBd7j r 1(SjMDtk+@|oTR{jl8`4H#)Ola[6^n뺶v. (L&>y0kq|>}>_D|x¾6PxMS=X! ciN^W3N\"rH1cYb33qZ?GaOzxp.;xkMZ#֔C!u'; OVV8ϔDcEH휪M}d,[O a !8iQ՜DvsjIV[gb|ꭷ5+oiS)?>"|>S#vZvgt񳝩b$57|E/ߊ*x`0PBn?6<7E4;XC`gsUQ|],uɲ\Ⱦ;vH{%vW@ (fRԺ~4R)T3ohІ9Q #&'3U\V*DDtf [qv@N7aR|/Is_~#n8#JiWN\{=sWy2|Tt<;3ɩ dɈAoڈHHvDVd|IMjz3^ղ5ǙWkX hNm$wǡ0o͡;牎>{#f:kY"oqic gk0_Awvu&yla!:S,ޥM7%>2OU Zy:O ~[o\2bGXu:EƲ  *>ۥ*AO"44z0ǓNq@1^r{[=r,Ayyl o3q<)68ٹNF-&!kc,D"9B>RF 0'"%sae2O20zYBOҜeYZ;5/ZU)vtl}d\k6|㺮_>}uʉhozWH 0ӵqX"#..D'Mdזio=ϷnFA_2Hs>4%lYMU>$K0FtEQQT(\3LԧtgK9+0KXrH&8$X2?V]IJo#m #V߻*NRo w49Mmw@]*d^Aĝj5.6:hCzUd=a߅^:閬C|X'}Ƶlv]Mm[HSO MD}߈Ξ!x;qpz~HwgF+ d, z d߀%{~AJXӟ:u%j0,r| z&lA3q3RFs(!4o]L,8]?Nio! "H.~*IWJ#ƗP~fL 94AdE8YqPd4/:5$+ȷzSwi/0Ӱ3ċ1.Zsw\]gp.x]W"9KD5gkq+_÷b͌N'=΋KP[lN#Ui wxؾFŔd4ٷH<{G}o (z󞫃?P)"?8&ч۾PG69kOmҍUA:ՖdXc3g&SDOdwMqzo|tTuR&h:/)'Z{09+ƛ@@?[},U$?]?ac=.x$պ`,hZlG5 y+Dv(3:׉Pm qx4(ugk뵮KDe9c1c2^]Wѩ̤XZ{>eak}׏3uaHbc ߏ $0a"&f#-U.;]H Nign~ڳT!3LJx_S,B¹ZM' +kjÍ*gl8/甇f;:Zx:6/: Γx 䱂e@u- fv%-fYwn >l<~zd%/ӞP|TC]o%;Rp!b]|B U B)|;˙0W133/1MyCAqq~||C̺Dt*b>dO< % npB;*Za?̴,7_D ﻝg=3Fi&\[4ɭfq9| RNRс; /l~x3u?IU,%FR(")w)=?QhkW˳yw>z\[EdLK?UzRi@L b˼lKU҉)ٽ?kVIJ^l(ULK(3V(N M~!V^TZ  }Q\*F3{jR rsw;^)^LKh5ȥY|2eq(9Ts,}|׬޸}~S}v?Uu]]{:`D'/ nJ'UjfĖå5d8ѹHť3- IDATlBNgf",t=Qv:mSM0mV E*Ԛ,4M]Ny1.ZmCuͣI۠7 S(ScZ bm袳-ņ++|AT~DINEK?Zpo GVA=bİ+:nZCB @$Ң(.p3T!m8N +|L} &/(9Rok(zxŹ-4SDdSr}.q 5Jn`KXu-5X%[PU$5YW u˲&"۶7K J]Мaa]]a8h+-B.s%5ŽA1|SE %ɼ^=BvY']P yvn_XRD>x:6U o!X]-40빮_ ;d [~;Ts[ؓrwԾvaH Qi'>NDP'J,we;MrѴ-7[g70/7)Awʱ.8@Vủ=zu%P0^E>>E_8eJ9_6 ^ ?Mcy!ZJ\T Jqyțj-o;@|kkTX0mm44-s)9]9>@JޢC$:f")HaDph}V`Cu5f Y)ĸ__,K_i\"95EDmU:ìdyS,qx gN#*hrVR#dʲ&S' \|~넷{ol,h :Ԭ\%I7v]t]0 肙XN )A9) 65QwFV"? M( Ϛ|S^濡5ޔ'z3N:1##UݫJD:]/波ghؗ[MS9&ժt02:p1%ar"o,οAX#T_c)N/^s؉,}ǩ'@4-oYl~s<k%eů.;bfFNW 0;SX N3UŒw1-T.a8H fF(kC&qJBkg<q(~Cz3)cY3xk$|7ݝZ[x_WxV)̟yLI3}][sjފa$b(Pơpw}}p?Wc723E ~e~5dpe46 :KAmn⢢=8տ"`?;e,Tԭ$]x~ ΌqqotgE5_<}3N`bX6ݡT~C|n2_?b /0ۭz '\1Acw2#k<[-ɔX4S霠e-!oca'\DNu!.riײȯ_пsXϊ+3t#nsD["|"3_EO* is$ޟ)`Vx*QoŧH/P~s*T7zܻI [r&ӄs0aZkz ߚZEȶm:HuHR;Q YMDR$w̳ @)x ފޠ hL̓9 !;pb5a}B ϛǧ93P_45B*fyX@ςs{`j*`&pW=C^ݲƋE+Ag:FcT#8;]C,ڍ"FX' CD>?'}~>b?"Xx|'],uv]u]???zRa+e읇=#M1xa`P<;z!ə8}'{ $ɈL b"(K0թwxWx[L@̟Mw Rmյ9ԷR/<ҿ$Uzδ{ FD`1G%/fN;. b@Қq+BJ7/p u7vba>^C|(tO9.`H7|=v) [ , {f!um~J_ꚬ--Q'q#k)Nlל)i2]Q¸\L}>??m۾":73SFy+d߿_/ˢ ֧C @ENm)`{k;%=]z0, Rh>*[UUE%vthff9~^W;ϧ;ovll1lk+y33kmz})w>@p!˹ȍeiͳ'"B|[m;szehmʩ^CXKYoIii)JBMqi? z]ս!"ۙg #zku\uq || 3;-~<"3ĜS_+ܖJ%ܮsNdZoz6'j#"ʘWzȆgƦ'rԐ?%4/=rlQ+9Kv%K'bv[X#YI2Pql"CkDuh *iԉEEMld=!(E?>|>e{4Fwu·t.%?7SjlfڶMlXe]}g_"=M؊B׈4TED(F?'6l'jx+]N7L/3C~SR$Dd@Qp%{|Ox-xhmלr)6)M.4jDC# vg#%በ"yj[ qO!%<ߺ%xh4: C@17kWT!rSmp>\-YWֲARZtRgPWy>_uoq[o,YE7mS YW]ׇv]۶j|,;lS4!{ :]"rTT8$t| nx#JfOq/srv;6+ˠRQ KH 0fHz}d %!XI SKS'KY!qt=@'T'c=D](KU GƧ`<3aHŏ"hKH5IDԷQ3ZYrBCc0;GVB%}d)6.Ńו2#>N3^dz%Kp]>Dw|>8q__O!88S0.ʘgsqo1ʗuc#"۷zu~X֣9G#ٯ&z++ Whl0W"c->Iкۨ/;#$g~a팸QIx.dιyhq~slc@ϙҜޅnL0H3z-_HQU-9x u_ b 54=3|iW,ո9eZl-Wme3w}qҐǠsXu]tmqb]Whe&ܠ(3EyCoz5DBºfb'ޅm\e#@5&u:&L#رG 9iE@2F ['d7SfB8z]{f~MӦy`53;߉pWߟeH2omgZv->6 r&+wR_$kZH#GTk*9tQ^1Ȁ!& ^{Ы,":7]vDG0~NOS`Ism/-=PTOPy*D]Cz{"v %ArRپAۦRJ:58NsawiR ڋ_a+n>MCnz4{5caʯ}@ v!H%2f1K JPӎ(}ǜZC0(Y%[kDͺ s'+e"Br[\\< 6tkހ.ފ/Ѓ@ F .û\OfGlF 0qt?%ijZQo֛ʈ;76z>:h%eYI$[LJ.\ ߠ)! fX%ו H5QL}w^0= h@S*'W|V} M[.h/ ]TL{ƈƝA(B$bT&:M~s=xFL8mIYsRh7'(g H$3f<$-,%0 u&%!x1{}MD8@/rbÁuUs!Ի%Uh}iH4U]W\C,y*:I̯סC؄G+KΜƺzDn y۶^W{_>UsO9IW D]BR8&;rb;9U29'n$<`qя6_Dwޤ,Lƻkyjh}pr:A&u53Ou|C \ #ƌdGIO+LlNտOqz i9(m2VjE'dh6YodK̼+3^纲 "q\Wc>}?Y ;qK}Z_cVd]}tJA`.!>58n*c2.R3?]S>uUjR)>ů$"^k 7<F䪇u$Œ2{e߽t+n1Oq,h.*wH=c}}CG1xlHߌB&_ sJFAwiR%"2 #gZ|v]hu0wQ!AN:m۶SN=|".H,B#QDƯkY??>xǹWXM>D2D IDAT2;ӟ"Qu7֞JSh`tAJ,;4Ifz{ ٢ w/݌K;4@CxB/4z U_ULDL CS,lиj LB/n1v+5];1Y}hԚ}{y n$sEitR~8|!o C3(L Vo1Έ#<<|AIFwnc"$#mF;Zz-ˢ&=𺮷3e(q&c9^ H52KyKRRQquz 1E)"?Cɳ!kjDS0N[6V_+4QD ~⟨dZv|%t+t!ahI~_Ι-}O"CNt\{t}#:ӰR3f#C כ羒yx]4CY :QH]TF!K0se[Z۶mYu]Du]D.~Ҕ [L8ׯj˲޽NEE{L׮@g_n5P3C \VcF26F4qѽ)p9혲eބb 7Wh˫sT:e| /8/Lo!󍃃ƯxɟDL%w+ e6a[u*Dr=`exDYskaG"Ct74BP0 Ķd<~6?ؙ#DFUz:Kw|(+ ;L(nL}7on_QS4:a`%.( #zk#D8WíT`, ]Ei:ʃ=ܬ^?nJqAQ#KDS&\mS>qO/%xk":n`)8|9o a%S9 fňyf!q]Πk|ݔi!'azj:E+#up} eȱ6.50Χė1\;mfkS12&UID\cgn:6s/@yGέNɛW"h saJ JǯnJ_G5Ȥ"'螠s>@g짞SuXԝǾ,+.Z휰\ M{"Sh]ׯ׺.:FucAs }%DeYDں#C."e #!quw]r'x wkCθ;{:Z͡C[8n*=+ oqW$9nAJʬjgF8b3=@GJYCD$HH‘D1)Mz0ܠCr{KT)✓Kd$XA2iJI.).lKB.xLyir/n8dǬmitvh2/ vZݻa'>q< sI1C7Yr2g_s_uDu]_^r^f7'*yQh]DhܭGAj<8kJ pkk{yĵw̋nK{@^!6[jģb35㪃:SkPz wkpi4!60bR_JLՂgyI(+}^Jyy뺮KeXLû$P2LҌP# T+I#Qʳbc? GkSGM` * m&&B[?&g!fqOɮÇudEcSJP%j@;}TQVJRFqڡA\.r{q[qXfCTΗPfEA:r^1]3AnL3.Vֺm׊{u%hHDzcc(<@$TJݶm{R?TJO/뺬 p|p.r`βa?2a$'O=ZŐy񞼱;M4Bp{f}0᤻S$vVڈdsXx,11ӺA-l#̿bH5FYzא@O:!@?DCTR*a=! OM #n˒i/&-B)T`~R}'D}ZS)zQ]kMxd1P> F Oqks; C@7 ehRpy Sy1X1@0ҷ\.׷!1 * Sx@ig/:bq`iri|Q}%LJSi5"N"ˀ8)͋X`!A,qQYoĽ#’&@ T]Ro956(0Fɮ]O}{׿~!襀s)eK{Շk=Ǡ`Y2Ł[@UAڇilJn1mɾ׺6[)IRJ9/xK r Gظ@&晼}?>Pe]UINKgǿ ajхL3+ `Nk瀸 )KCv1n4ͥ RѮZ4`(>,mX;!8Ys颏O=ftēJ=jIwݜd}2ITJnrs p |\t| .Sِnd)iVɜlϿtLE?~vʱG/нdʔWy{,fkvx'GJ!dN$9RJ˲ 9/D`҈0yeN;jf@*}akjdaVCc!Q$"A}-[_LC,cdk50Iu%(ݚ\R!0 : `b|LIL]Y!ĆC^2&z>.!=]}/GuK۞bG'CC< x쪹f4+@PT7] O rwE*mJȯlѱ)jM.mϥ` bY\+trIt@:rDN0}xom]ה`YRʲ,#+\d>(N ~\ܦIv|mOy7J>j Y4] f(PEC`0Wb!ȮNE?JlGbW. ݚHܮ;|@zQEPІ3hTׯϯn Y|4%:x>R^p yf|<]7("ɺ>BkJ_i\= ѠKѼq)4\_^b!v[)u]h0eF#)]ɯ2AJR*=mooIjcgގJ_tH)n4H޶u۶~3<Pc`"]gO?)F$ ;g\>WUV$ h:d~v5.1%Uh|BBJ$r^"$ʧA|j2vbtvAZK&JhX] Ϧk@+V]paf p`Nu BpQ2D>"Ȉ WK&ڎ|Yﺷ Y/mjn@Eԏnn۶m˶m9mYm;|d9Wݒ&U*%zEiĽ~ʪZY&^h I!W{XΦ< mq:śUtPF$ ݚA09&JT/eG\t(A x%h42Ɇ*[h "4vRX .OS?y A q#3飭VBa&icnHf}:Pw?$:pe izd}sT:4{(t;b4jCH{Hh?NF,ғaG^//'\uXV" ȕx(#dqAjP2JɆ*a+l'q;ށwMk#0IFpC 6 t\uZD2e:g` f?urT?` 2\ ntY9Of[eb" 9YQJʔ\# =-{jDe`deQ~f0J=rY[XV?s&i7H Zkι,h{ykîNCPG *{iXd5HV.T|Q2cP)"btpzЕǢenh$'j$iFNXW0ش*XWBB-Bӑ/l 0SP3޹N ..SMTp`杧p06Nb ʝ8(<X33aqQ!g5Y=iNѴ1׊V$R@c0O:MʵrOfl0GV 1GVyRJt7/m{J_J*D i++'`aBT [4_h !{ WC.dC`x^KҞbEb0a+"0CrSuCm|&ɭq; ê[rmzj0/J8ȹ;?)^ T"wu _A}!<`Ӿ  m$+ N31 iYt %n2h~6Z/R|;`6ض=)e b:T mr їN<{Byzlle̚Y'|\$RŬJ@#=Mn?5|;1d;%4vo5Ph$1/=/FsZvEFtIQ~^@S8I)mS4}?㸩S -eǂHyV~VY;]"7h c鋁9ǣZh}-XCU+1x62N27,J~u#{ݶ5gzڋ@tsaL.yi ϦvK Sx&6|d{<۴>'ը,BEOx)ldקSuB " nZ%a#H}f4Mfi2k\~ZUW*E.(C[7- ^M^^җ/_Ҿ}_//)Y4 @͚Gu#(kԦt ITϲdެJZǃN k^L@cB~ U<&}%u97h{Jô,Ǜ49wdWzO眩Ba]DN2\ Ν32KLV;Sxі^7qQ;v SV[+h05IȔl3nW>N`IH鬄LHXKЫj(zf vVDI0ek~h^ty}VF15K#^hh ߗ}q]ӺfQ9OR<|Ϥ/B~J,[DӝQBR֯_P3= h.D,23OzS:>8|E;YB^/ݣmXA!=EF+dgJk(adqBu/y{Ѩe5.h-AS&\"p\X1&L8 ⡨掇*ZIIDAT<O'eiQH? h(@oQ#ҀfDkS9g 8Їm b`aYY!R$cRv[a!hl?"LH;DAWp4Dh,_e5ў%~*K[dvpdwQ cwZ~q曬"º.DL*gPavp @toYXg6xwXJ7 6Wʖ KArFl<-indYR3Uy0FƉ)1jQd*٣/ H IENDB`gav-0.9.1/themes/fabeach/background_big.png000066400000000000000000002132671423175241600206220ustar00rootroot00000000000000PNG  IHDR/6bKGD pHYs  tIME(V\ IDATx˲-9玵9yfu7)M$3@hҔi"HÉ@&M8ȦQnU3W5ለyĊ7H}>~;䄗O]e! ZxEۼ/vazhͧF>·qK>+}\O{zU,ՁY_{@^/ϜGD.o!w^օ>]k{~4#TSOUa~w9GC^;PdC皛uM2o?N 0?ӻS@v_n6?VMWd9.6X>f8)3B(#˦Q{7Q+L& $PxzMT|{67~O4.LXIQc̗G\b;mwhv\F9-W6ԢB^7| =!-sxJwr}K&)/ڊESUl9k4:#ɯ1r.ۘK>0k?qswd&ƜNI>N&7M v6nure.*yF?tfؤ3nn8PVfnp'x{l*_: %d.G;Zi#wVԠlqw^"[R^^:Y=\?Ex^'Сs_Lm ׶σX!rV`qs5W>.Nբ"K̋&3Ebo+Lt;7r_p<Ѱ7`*#UGdt9]=y~ⴷ&ooIDk#>w?mF'~dC[Ab9#nR7hl4Yi3RZn/w1>w }ڗkl1MgӴڥIk5(Ų-Y{LI_ȯ5M?f~b2\q&1͔9V i&67h=ђp~b5ſ̲JuQ&,Zӝ@x5 rJnU>豻bP{%s 6:731&VXZ29{h!XCW$l_? Sןtڬ33t3X nJ Ja9W+ aL ;pm9ї2fyl@m?o?.^i'l>lr2Fwbũ*J"M4dA\r!l#Fg{-aQSM@(4CIxlA/TSaPkLX (u.F[nVj1LXFqG b56g`=ˑ#fA|o3ɹ#[ we$%~J;Jos8 [U4npw,\?ɣ4UyO2jTfhrCc!cߎKnsy}5"M'nm~o;Uꩯ  >/Oc07MG"~걥 q _=qDF?̙JiJݳ1=lXvi)^G֕58=]_~5tMM ͇ޔe&|`Ganxrjb3g#<-kA<#+nی (7;#&FGs;U=O>҂nk)-,Q<Μ>9TvZ\3,7]!ɂX]{$M. ndEb~XxەAZZne~tzm[ V/&c]lA~M;(OiGM-x}cO<<|4{n6J6$XwK@ UVfMޑ)t̼g;t]yl-. d"X'b!b|SK{32M>N m;?h-aGU*@Y&_3=^Io~|^?'1]`ˣ}^` ljظ6ǍSQV0=gE?@|R<*Ǹ#Ň.Y6͡bbAu2Զ~3_iGegK~4xa`Cv=xS!+/'Xaϐm!m !3ܱ nY2I;xx3!OuWx`@@Fڞ0}iń}r'>~͈8mVмu1d66"|f3ɘd.А yAdsnZZrp:$[+sd/dے;<^5ag?^ xxl8Ԛ4x9/RW=&o۫5$e3؆4X_OYcY蔾 ?OP Zx:DjũƠO6Z J@zuߟ2} 8/Yk\)ٱ5jOq2+csoL06V)J ndcN /kofਆ1+t0efϟ7̔4 cc {7/u/ڞ93[fo''aG5xGY:Uc[e?f3qa99܏mp4 M1F彙LYC3S=G0-Ze<0"/Z 0rzΤ}g$'⍹YG50}c5 hέҶ?JYZ辩2ί<|o̔[mѪ: 4jKpNv 䢻8:n2:euz.8kC֎7ǠyG[ԬBKޜű9-;>| ~֜s~dl: -F*ע&j{Z4gis>k,}l g4vbj{+{´4SOYm5YbW.Prfm6+lTu؎XCDYA~g<o#, ʺ:4gUn gF9L)3cCS[a!e\ez7r Jգ<4PHB4j+Y%/N-Vz"aOiL]MUo*|ܖ4khmUi,`4MѺ֯zOYh'N_t@/nhN7Vvx!ۥutlƸ4(jImI:+7foFBܭ%Hre5Ѷ^145aEi54}6]js-ڎ!WyT7[ݲmݷڞLHLU<05miq-y9`g=p9:Si]ez@l l/dOYJG,x}w=o_Üi_w* 2l(, YY*Մ{j |5X`eoęhiŖgs/EX.l-q{N}5O=C}r?-l~R-DsmŁ%Xny ʸ8|~`; sz /Z+f(ܖ,˱z1K}jTH~g1L K|~p)5*l=N]l`j`I뱐{7gQy(stKu v{*upNm phuN<6Vziy)o`^A X-4A[?M0~5ScNBM,hE=ۺvEAB]i)q_'X th(3Mxm=3-L,ٯ|y^@Od1ytۋ&} 2Ϻ+qOu}T+grG^o@ Or?2~eR,tP`D՗Kx[  j[%e)>.83X:Z ۾G`(h^́kyB^'G؇plCnRjlpd6J#L!(;xW0Q7tن:v[VυEFz{3𫦮qzk 4"Bg`#9{\$}1UW r1V&C0Q1S`8ND`F3pρ5ӛ@Z"ElGfu?hu :um֮ۡ{1ң^?-s3wc֔pEa}Iػi̵ef~>r fjIU%hо[gWpBp{s!<2q1+K2e6eY6QbqwrSez3eY?]sFsѺ bFl FY{~Uwg=is `V Nwr3F23gpQ6R1e;ef`ܔݺTXVkADDfdCETY.cԚ|.%LE7tGi[or{s#]ޓtE6L~<&im;ue;hCփi_q/*6``a#y m3و27?hFl[8.4}33գSGf+g|Ě(vL bA~,L~l9iN&#Y!i=kݖXeqqyħ٭7[qo/[KhȹDڏ0K8{Xve}&ɲ:{kևrJn~! 4MmQ`YZipl ԰㨭.әo ,ԜWIv*b)mΑL4YlōAL"z֗n#ͧu@PӱB:iAnjLf3-O\`*Ss,DvQ}a5qdT\=6!!|u>zL\ =݌EC/a>Y9`T#EJna4⾰ pnjE=ũu 0 `YT *9-`z2zM,3\E/k1MhLL4S6ggٔ?;-xYfll1{cjP &p}ɀGI= :0t=i -@ޫGT,ѳArc>n:߽&{kl“ѠEلe;xkA~zKh7=k`bhQ<ZF9`g (MNb(40Z]>hzE}qo;atz&\ i6LKQ!Rr{Mh~bNT뵹 +֛̝-FrVaua|5C'`U2E[ !'v;l֐ Kn$vM6LCVc׾hٛMp (]y333yBӉBzyOLAE-{S7[JG{b_l@(U^gv{V6al;%DaiGl=|8F܈5"#UzV` /Fٷ7[2 v݂b]o<;xAp03g~)? m@clٛ.YB,9@bCu"G]@_0V֖fYϪ6n7ҫH2LB.Y^x}1c l6̖k\s j XO`O '' .vΪswz%hDuh伤y =O{@s`.EG\#6́@ t&e p?`-V]:PͳK;[L"!3 6}E&& L4Bn髷T껽{IL {A`~U:#Iy!pÂ:[]\yGh8)Y`,` $wA 6 ;, HM= "lG 0| wfara`7*(&.X89ރ c]c4SHX +wV̌wwA۠|h<æt@-`}RrCv9p`NІ`"&6{ $b1wcD.G IDAT?[`=p&2vKyx槣Me j5pDp/X @mNLL&`C@7qES30k d h(Sh SlqHvOӪѡHL[=}w ;p@ v Fw -~T6`@$l&Wr󏯿Ob oN ieA? 0~?O˷~ ˗//?_?{vz;a, ˟Y?}_~///DB`|?_;,q;#|/짿_OOr$~:BD$JOͯ"&n7?п_r:ϟ_}嗟_k#:?o~_׿ϟ?b|>mBo9}ÿo7/8!9.?/{%͇1H~駟fN^뺮Kw}o;:}o/_o~8}~D___?ؔ??O_~Ӝ_~D<33}[ 'l}qvt/o.uO?7|o_}oe?"/_~퍈Co߯?Xma[EKSeBi˗/>}b混>/|%MIel{쾼\7k}ޛ4C$I^^_C1u"?}?w1I_ccu_.V&T0L $!ukׯooo~5ǧEU`F/o9>0""X|"3Xj?̣O`o WB %9fxK5_v0&w6Uc~ޛ~߹A@o~xr< L̓;@f/ VA|w{gLYP7?G_[mjOpP¨.>ǘ 4q٭ـd,N`qwXu5poѳdgb&{ 3z]~m7wǃ[X-i6w bA`ASeD U[+iaDoa> E04ulgqA0?~P3|ZXٜ~ݩ2]sܪ H Cm6 |:g5kDF R/ h6@kfũuw`1zYlw{{mǘ3fʀ8;{ +M:(Ɓ_G,W&9kl[iAqM&@}"c_ۯ4ҺlZkY,볚p߽G,1|!O<\ Z3NIU|Ųi[7p`G<5UGBڢTLFKigqߙKK>z@ޣyjSNر+8 Y3l}q+ۮ>LpKN -n2y^ F.Έ f&Lz ĄF@y鬳mwv7&LL j,o5]T2ɶSt=o:q[A7d3çvFzĵZI\k;UP7d`*;Ӧi+H#Jm(+W?s+&f'L5Q~Xo{$Y.b7\/٩2`F&B 3|l;m.<ƴfxeii…s_(6qσfcU4}UФᾎ)C10֫2\rxH(k῍tkg0E0";LJIQߙQױn4aYDs*~:&&-3)6͛ö*; F'ɬlNfb½Y_e{)rC\q}6N͐aifE5;v&&r3-ZX|8ōuT=Ԉ1Gu=0ǦڙUnm+c~`YIGX _|HZ] g:x7眏 |Ĥ>9`Qt~s4(>8Nལ ڇƎp]'VĽ͡wg- 7 QO]tSEĂ;$!Q-V)_T|r究kx4PhJgXSo e v~ 3`oWAwHd`.3CNisgZH$ۭ6crO_uL=4o;ݩkv*g >q*VYU7U`6ār,3vUg7cimbUwU?! Ͷ)?L !g4E*h/d|VLO8ۧ2n(V V3:- hU Tb'C8"jHG1 I$fIE̔D"TI\jM( ||8Lz琒uk"^t|.}ؓe1@靾|03306e\*UMdɗgd_M7ѿ}Gܯ}]2;T$s9-OJ7[N_ 333!UK= "B97o3!IÉ%qБ\X"QTIҘHV)+3afr PY"ti"tH8+EHERa!&rxQY5j͢5"U`G8HMaV_"fƛD.Z7y~%f+X`֒uNUJl0 O.#1 ɔ~ /K`jCC¥*Ri)wW8&-^{&WG\C)R'w󱫤UPB]-Z ĪS9^L"su&jz~,R :{M 5"҉DN_$DA(03Q>1Ь (_ȠGaXЍU{ڮTL^jmEբBˉy m|9HpEsY+WebǛj3Q$" /"/K>u<0g ʚŒ*^8=Upu {zwLҢF*h ei|* 2S +rq#&qY S7(ϖaRwy $?!Kҧv|'"H$HdU᥊:~*;Arǵ x>3b.h%(5 YM=OX΁5[V==5*Kr b\ہJ\X: :. pV`,ڐhU1I8{&Ӫ RbQl/l7P͢D'}g>`g+Rn.}h/ PWlĹ܈H2ESɇy<* ',NNۃ].bd\*!TWm+W}ƣ GwQI"DD2,q9O}iW,x!u#13DߖJИr%iQmAJVQW*JWFB4t,{\sDo]D` cYwWXS%-Lqrʽz$b و*uD/3eQu?È3{JoJL[]O~k7„NېD51)H/n̬G$ꩆNᰀBuvJ'5.-f^iN3I1uD829214ΘG )ܨjk Rrr$|"~!?d짚f7s f8HrEu,K(q'R$XLJL=>6Qڵ=Zzp\nYk9L: ّŮj|doMr!#EQb틨}!(QOUDIEYoO'"&>Q8䒴x )Z0Q(J\=+DT!RE"ʽ2_r+lnKO,R#SkWzV)z2n?P"\ ZaiAӱe#ESR#kj\su][dw!b"$lHDJQ3TR-"$[YZ2vcW֓DS :&wP󑗯?uݗ? a"#$y(w!)uN18&7+/ԅ`k˒ܩ$ɇ4,+D1H9 #ENg;m蚩R\up],لlYmHT+4,usnt\õV;k+UÎo .nvMڮh' "`ul9N]!0__*Ę]ի]󑊳@bjX8CRg%|AQ2}xx*G81J"ҕf4seli#eӉ˙ 4>¹dU`LkS)Db{17p Ul_լk{M]mYzd .r\9RfRQmrr+at:̡Jp H^# Z8doѮUg#9OILDp-Vʐj6R}=w.D[;@;yL8+Kj j;*rLJ{Rn8ramu=(aGRgƔpf0)NFxXYgX8kIՕr/n-0 S0JevMZ@p::?Ďʙ{s˫{kwWI”26͒Ly=Nj5H),Й(wrx" 4S([ [V"1$AO!Ig3KX[9Ln4]m,Q\jYiLi!}%wd"Uإަ) VM $NبD#óAs~#Bd%m\P'$xI~-N^ fbB4t=(Di>I5)9): G,wi(1`.J68Pv\ձ)iJQj=((1F!Տzʆ, qZw<)*gq^![,3sXTM7|:_^H[;ֺTڵHt=h)rc$P-f|SRcK`/]:Gzg_˥zM7Y*=YzQ]JL(IA$ |~er0[v\ juhZ4)aaIyG>6_E[RD$Oɲ,3)*_#]A(S9sY^I3D)p^݉Djn-j_^bd Ɋ>O jNm۩d Ȼ&Y_j6:ctYz 協"78GSg ap'"f ,!+mrȣo76'*ql"="BcDDX,tr+,tk1ݷ`%SC@@!UKC*߁#"3.ъڹZl9(ґl=ض " Ax=i y&I%%>)T` k3\?P!yFχ7#ݠ#EIJI QJuLZD(DDc阢h"pےԩ- 茦Wb$)xJ_7W1)ЇӪ@lrH$VP /ա'} -*Ta#kH|zRοXEzwD<9s8V~RbZkwpA)%s%\*Cՙ_"3#M'$ v5ȟĘv &PT7z 9-}kVf^"F+Z/5Ei)&b79`TB]]w9X?UMKޗ 95_eaez vy=7Xm@{*?&%qV7ַuܖ^ըg`H "fݼ&hw 6":t-:FA!^ rJQ˫Op˾`hz+Grct,%B, ~BVNxeU )/ST*!sj-1J9{q}- h hZ񋜺mA 2(8w`JҜNnDN|-Đ=hkEdWw\%j[YFSu踎Q(Ƌq^Agz d1L]7(,-.vD')(0회RFuO&fIN/VSǵA|[;ZTr8۶t6=9"XάUym9\^%\w4u"+"COkt ˸fiD$:ڡu IDAT=o!rD ffېk#ls-Wn&Go,EMsztK˻k`_nͱp]P~wZGȺ3)}u(KMdWo H&F^k^[Xu sNVor51%_' FKkVSG93'AL}J;=eUH& |VRJdkEUH?TXי0Hr-`rdWJTQ5{zSKM땾3H?%4J$HQKKW O=I,deeHǂOk|/0S.iGߐ z9'״ :"$Q&P9wRA_uo?~ ‰CH'ͣcEUy!񂜙9n$ L*[\.ԗ25L\[^?_K-X )g"iCD%vE8&h-$Wq*̪)>gOfndJo~Y?S#oӟXFRm~u9ho{iT`Q %EPOLnbNc쒵NbG]ւi:Y6B8eMsjU33l͠SSUwԼBaeuQX}RC w^5S%ڨ)vzivf۵\+~LGudYDFN]7wmAYcgj CЊet&Ui{"λ"28plHn&QD+k:įvB N\[l^] |We}jJ-x&bKR%>%4x-dfOqZzm]h/ijM3aT#8KsͲC L4hS= @torHtb~SU2U9g][*g-JQT|,loMX{ST)U6_gZg!81/f iʵ/=2=K9H-oǩ q X  ~B1j/>馀)o\ȪAʳzgw+kHɈ" 9,:1PVS7zʬuL?10J=F 7Eu$8B8N'8#GRr;YXk^לߘ L?/=ɜyd!rMRl3Z pHu=J:)FHEV} *+N*jwU4b ~l9-n'KKSizTNGWl6u+7h[Й=[!a'ݡ-J۵+߾|*ڨ[Ju \B:sJg)M?Pdw4Ѿ@tn""}_ %?g^iIإJ6mD8 HzGn7̆uW!Ib}GcW* ӗ}7Q,J'k0*`~7D_P $ZO~]j  Åo.ڷ~띳_!:-zΪDt|δCam B]LKH|SRl']dZ"BV6lNy&!φ 2H˖c!Pmuշ$JWV=Utrjtk-=[#n8{Vg3/7!Oԭ=1 19~rŷKKØ=J(cj ;&=)%eB7ԶRNJFgW[`[xa1ԩ$*-Yz"6 )59ogp;&_נ΀y=7Ƚ cDņ3Y(Q/]c'4sHB#DByin4Y|ڟ1?2{$h WSB\LT2ƫD9D,NٻBP?=9Dk×6#[kBK,`U}*c%O d (A$IP`>|:}NN+e2ҙstxl䴔X/v=f^Y@.A҅픲/ע$EY9>}!5}6'Sr/0 Ĺy 9f'V26oL8 \DTt agzlr*Sv>T}R@n藥g)-3[ԧ꽫V䲡b VxM 3['9;|@ӻ+#wj$t~.+?*n(ciajҽM]:$~&% &:u*KJk6MJ=b-m$Ř#2ҋ_mDN,B8Ӌ1{ѝm-ňp^)`rKVwb2.a9ucs\u?ڟc{FSj m<4aiA( XdG2}4&Ь3=,%E8Ullcv5Dk nȦ]f9r8]G%!IEҤ`:YU3IZRj^R=F(c&Yѳ$ыۖ?L4b\FV<21qQEEUz)ǎa"i:0N7#4ȕ6$U\GVEJC#~ZHy+-s.(n;ߺWvUKNu`DxtKDv-YWVV̑>iQNT7dWjت4/a'1F%t:z{f~y9}ݷ笚tVyaNoM: Wѻ43블F|MW m~K;ul~pZѽa3WJmk9rɖ l_ s;h m?zȘFRi.)n!;ic. o"#(rx.R@Ϭ 8y}TVT9|[r 9CABbKzJ2琴SE]4'D[*/B~ʹ %%M؝(tr H.bwQ(0U@>C8ǘ)MȑtOtҭLr6lxKٟf gl}VS]}s[iwCBI$S&_sN\U%ƪ:f?gMei^ZRϾc JQsFۊ5PLԭEb1vI|wuA[E$bLKsҤC%ƎSW$ `ԞS ;3MY;iJ`^"㣅lnkZNl̩[^-vZ%2wc^I^]kIoHYocE鈢*HI;3EÉ&4(+y반ٹs66~񁘉auTְ:s\HrC3-1%eZRRXNDn_vzUwi4`\fQ)zmؠ: p\?L{1)>9l7o}"*~-C8q.0w/U7W~Nͨ-RMMYGN:]"XX;u&eU|22W"|j>Ƃ =ЪWobZA-_Z5 ׺F|KV^s4Cr|\'=4_H~eD8|{X&&ȨůjӿySN SdBXM\f+ZMTnrZ6XW ̾5؄(WVns(Bn8j`NIrv9IvPgVR l=@&N0w97$IZ^6&r>?5hOyzc$H\܎I.;)#uvu>R}_A\`K Z{LpJclr!0&]{*(J|i^$]&!|? 5>lY,*.! bc|4+Z9zQ*iXLQ{2G.k\S,$8]'t f4}tN] EHh4v6r %4 jSmnWbxx5 HO.-G4rݦ TMW^?\^c_u9Y%i6HU$"8;vcs!hȎ#";jB: 8%;MqKQI93m h¢t>,!&?·ſ()Ƽ 1F-ż-f0|p>_D]^CJzB5$o/{;H^∋thYߩ<2RA$r]swa]iy*QI*%8UsZ]NqUhhX5],$CS)u]ˊՎK7^iIrQN[7&&Ū2*a%_56~%%Ã^lMu>pYy"ΧɁD|b E{ Sg&Uhz_>zGY9`zr.sY߸>0v/~]Ùk:(}RP|T^,Xk, #kJf9STWצS#kx< \H:$o$\1!pkȺ^GјԃFj`*)tIV-\i([l4X-&rc oPE.1~MJMcjC|>9@S85W:wN.&d.':q٭65c']c]|%v]r>?Ki6t:^Q_%ܝ(ҲR[D`Hkv7Y-9!Xޣ1V|MPLO]em{%e/ڠk-ۙ(Zz+"Ӊ8Hv+8)ΔߪapM^JM,̚|4xO$톨^uco]k MlݡeN/KtZv5H3B5(WiH4H:]׮r\: vOR%Ng .*YTʏ]^(~"u3WUɌkG6#% tTMù'م;>uKhɩ 7wqVҼw- ~Ēry= f 4Q(K|bץs ]'0<e4Soe'DD׍lJtԯpbU$Ƭ/ 31,,U B̜ɭ(70aFF}O]U-yz*IWXD)"1=+d7gҋ ֕KؗYFzZ!O~7>ij G-8'F,KDے "%nSY(yx>SƺI33T4Nꗚ-/ul^+.[V6<{Cu'605q޼+#>U8=iMt'znQtprLs[qKoPn漇H]B/ʱT+yP~L~헷9 ߻dt,#"!Zj6(icNp q䡣v_?"ɳ$цVBT.ot%D:Id]A;QFl}ILϖ`+^%՗OZ4ܽ#}q矜ݙ\-N+Zwdt@.UOy˙᱌;GM|-{>`z╚SڕƏv֒gǫ[/ueEiJ)CEz0Q]={J-OYstJ g+CG=*/;F)jhV=X2YQ4ZA)rГD2uv4*JdΙߑe%z~[Ki!XG JgM3OPJg8ɆU@h63i qDT=DX\Q sE8*-裈ާg`!/|o?shPj\E_ZKY.ewMhKSy:u$LcbS](s(!rKCG\?/CKh*\+XVҧYqQ%L6`0Nn {_4h|-8lU0. דw -{W&Pm#"Z>IkLUJl)J5!}%Svr`/AK IDATL4nܷ1v1~$^74Iup!p8g@iz}RkKT+@QJԜHZҧϪݯp_2ꢬ[g L<_*0Yetk9to+73WfEuoE̪E?d?''I:3=2xյĿkV?rH/AnVPrRzt$L%s;y g_D)/1-_94!vb]UaMZ]uR/Zy/1c\ϪTΧ?0 QV2g?|5˟mL[ &ƾ|hzck[F[.vy?b҆"̧S40}HMqe5ølCXWG 9JzrM?CfЯNXDKD*Oɩ$@/h_{FWiW I~<ަ̖"2ZD"Ji.kΗl, 7}iw^dݦ44)|Ƚ}f.~.W\!XM{Wsr-Vla Ӛ(;2E9GʹK~U6qxi]!gϾpw?/\ ȮFسMQd$τe|0UU;RR\b|_咃Nd" |pp N'"J:|JO!w,5.)*ט|:=lGHL,<.ӫݮҘH^KQADVqN9t~r !S(YB8N>9Gv4_TcJ9*"":S=eK4yXukMXWK$|?)?przʫncl*M/u}=̕ %յ wX 4%!ϝ7[{@O? :u ~zxq0Rm%ի[ ^+3|/^I` i^>~}8e82ZKis- 5CE8|[f>mc6QI|-׻\bi=EjPnE~Sՠ:TTX_X/'%^k;Uj͈T';9[ԴnM>ITV.Wڥ-aruzG7jrҪAtFYHz\B6ד%ko* TbE1 n1|wbwctўos:J*SRbr9L\v=V+sTxK3PjMO:InQp=^:I#YOߺ袚Ulw@S!M[D'֩mwfq;mrĤfJ`":gTs,ʭs?ՏĊr'W P1^qo,L\ѫbޟGQ?z־zᏔ^2u>!;`8Jn?kݥ.j-l2Y_{{Nb }' a?N)cנqdn"hdXd1k(|B쪭ȈySveOb>SPQ$h\s 9eKBO+O:݋97&Z>uMcN?9+rUbP;%}]EC.i.5K&CskGL^@1K.I?%|6}zksczbo"HU݂ {bOiLWqY Ȣ>6D46tu1R8sI׉mxҷyE׉v+}N'{I̔Wm[7%QIfdl sHf@ɕI_1~1|%Iz![lp|ں.vQȅRt[ Y:({6Ő%gf ^9 -uPoɄ0{$REaiП}H'G%h攜L(S/jn<BSyd&ֆrQ;Es|yrg8XƮ>fۛo]eE˽쌕7p2C4"fh5[> cBħ @OQE 9՚xg_DlYhz)c9p].|̟O[lmD@3CnXJ oQ?f /!n[&\^#~ANQP^Hqǀjȓs/$9@ E-̌xQ [U.'vk3'b>U5an'ym~‎|>_䵅ѢB^**6'Fz]"a8CDγ#8uqedھo^{0C%l"r'7"xN9ޠ(AUor〛o{H\ޯu\YS9Ԃɐٕޒ -fst˶Aae?,,U"l^uFNe6o":#vKb%*f\a(Cޫ1h;VBD,^1 @?hoxi,K8W'ňCD;m$8o.-Cc)G RˆVAtyUDƻ.)oMέ%% ىL[秬T)!$%^/͛Do8 B29t?r>};IG=9qf;A明/3K?P|na81x0T6m9=~_<3L`&7xq&}ƺ@?qef i̣1LAs-ЖۉOo s\W 4׫E-<Mz?b@e*+x1T$O\٦0X*=DHi9U(b'*c$Sz=os@4L;œ]>U"+=>wqp' 7D'! Q`ue]PW榟Z?{3M1N Z5u$:U9?1VȲSC~ +ھQ1+P<1W YM5ûš}j Ddnv9QER\Hlg+„U\ $RgY2a䁪!F^mc{n ۨ=IUd˹te 0 =Qf""W?*8[ӵCѼ ~I4f9KAC$m+*-SDl]W%5ddB?I)3} =AKd$9y{`ጆ}3fNEqE"5'όHkJܕQqA&ad?}vu9rЋɒuɴ/=d8O{S̱_Yq?e?DE{mE} }]0^3xAY2xd"Th,|,Bi=ى]Yj>CND[AkDqNܠ2Sk1 LS-cfAf uЈ `P?~e֋8"A*ʜ@8åASE88e.Et9ߘ;ӦN@viÝ7+ۘaB0mipme涨ZK(ǚ*~,}e XHvEΖ9nOGox$Њrq̼m&W_e=tŧkiesr\mW)MײCc01 gON2̗;P!St{S2|Qʷ`f5E]耒ExCFvj5SVL%I[|ySyB=U?% ;RC&p~al`=pAU#b8Řa]U7/Zpi>Ѩ+` Ii%_ 8}*^:X b4W5ο& x??w3Co :#{Dt*eڶmbpZEDy["ZYZ;zr8a,UsV|j @]z̈́ ^2b,=1*o2e^ݼd]9G Β_+_\b\ EyOBg s(@e/E4I=! X9E  $hsN9 ƋUD}h;1}Ƙr\జ,LC (P<2g-n8⛈^$* ڻ9%G71+y*#cDTڶݜSE2`t^ؚm1͢ЄOFf\&/]yĸҕ~Y7.(^HlD03s]Wk~qy?Om6Ji T"ǣxxymjvMZC6{ZU{3k7i$Ȟ-t-;W01~QʹuFKrF8v'dηYs{vWb>E"gat]oXjoa"o?w=ߐ V<}aa:+b39ՂzqED5vǿ]mٚ~Z1E][7맗CzrY]5y.8| _hǻ6eenDѦ:TwpSImm9|r9|@cP$0=O3Vk+YIpP O1Q0aU&nl'c, $<HϏ){2SPEky<M0Ge>,( ?TDV8,`rEGJs7ğPTISK(ׁ5Ax SJx|p(sn^_[OAYe UӉl;w)s{8b3&(< AJ8nAn#?xa|&2էBEx_JDϥȇ6`Q$oW&84acɞIHOHDY(EDu)5}_vvf_aC!$Cb;L& Tkܓ5rп%c -FseCSw)<x1JQH='" Ԛb"}ԏ PV 'vKH77{G^ GkoE"5-J(d~[4p!fhJ;Ti*me1xdtzGnO7,PDJbg C 1 * 7R T .czq~.c /d[3QLbH.O[^g Dbi&x{́7p^>ԃ]K~POc4.Ȓe@Ay&iVi۶ԅCx[H7<>umMmGk~89.{C*3 ?@Q򁀊~Ig1׮oQ3zF'&8QS𚝲ЩLxҵR,U:0K8R{ dyclx@J= ԊDl>0nhpDrYV8e%~2#TAƷR^xlmAh_‹RJ+^8 1IIwdjҒ*E}z1o?fn;rC_W|X{kMDVLC-($3MrT5͛(f#1%Ql:dT8u'䘿2Ⱦe#3~i E$VћzDˉƏZQ?ʪXUM]$%+pXx{KSkT۩|{W>JT2ӶƾJ%JIAÈ@@8~XI y^J|]y]z^/]ץgpøL::'mTid:wn?V@+ñ;x sZqOe1>I͂reB55$Li.uzʞ xq偙kj{:fנ٪Go(+`.FGڃ`tS6:pr=ߥОqM%rpDi* zs e zJ6 ~6cCLS,|JvL48-΋@KRydCubh<ǪV+Ip6UN #GpOU :^C @x~פ+TDiÍ hM+Ircp1<1+|{x!gC|m__DDcTT[ty:;bOƒ}U8~!B _2]"X~_׹;P&?'}]QN7P}ǔƷ>x=81vVSŊ Wa2eA+gDnXٜҹIӱ1NÉmݰT{23gDDDeC~̓VlXU* -yNۨ#VC5xD"=9nV+5&R QgD? -CQWGOkBQߊ&L@p|q3{Uy6mmk8[|GuY`&A>Ȥ "K3~"Γm:~:byw۶y3sA Dc^ԇ7v 4<{|mQ2T'@'Q]iGP>zY5%O=2%!U *l Ԁbf\D+tMpX:giJtCOQI4d躁;7FAxAU? A-yHVgY?'a[?=Qp73m_AijXS`\*ADѴic pzTd;;[A&0mD,"xx0Qj!oyi,7TڒWk.y 6^H"&`z\\qW'3D>9?^)YHLpC` xvyi cNy~<{SChEHF9afTJN 4lrPO5S)RɋQu.nƗ|[] LF9<[$GcOW߇ׯTK[t¸* <_en "1E=j/\%ضm~Ԍzloۮ\:7y(*-yJEf(FW.="U+lV5ٯWNJVl:-$0 9@< ?bl3By\ >ޟ. W$}gᶴQ =}HyrJ?%Staa2wů9@Əun ݸsw ;/.c!!WQ5xQE1>ArK'>M66+ 20K/όZKe5eK_uA_հWĆ_`,J=#SQuظrR؊jk\&=-ea $ 3bx {&Ϙ!xTh@ ڂ\lEF&>u]_ᭆ_y.B-D"e .C_(*􈄨#`zd*8.cvǰ8.|˜}>ӧv<2).33 QDgA2% 1:NJe+:}c3*U9t W#H_A/Frb|UV~Nېp[TA(حz{hJpw>5u/ %v$Hha@_ |"ErJ6-.W)#2W5=a>LG~:S0"SiE-P9 m. \ZҶZ῕3DyEr&-.41t> #u~5$|;z ~8FOƵdl<[SZZ;F}[k/2bV(L&(^oƯg:igAi[utB}vp3l&*!nJd?%r.<7L Bsy؁&w-i/m虳뫰DZ]XV*+H t]w-|!1ūZB2nMs19)m+h T#ȁLv}ԧW!tjKHEN[k۾oѷo:zvT1=Q)4f'YqUᣊIKSˏ΄Ɍ5k{_CQZ5bs`TO ,Aa2*Īr+[*jPPtRd+Dt];""dcՠ成V#"#a.y_A5. _Y>sZ֝DE8RXB."_~}ȵm[N9pa[E7N"spc?˜,[VkCcY*l[7͓8}oʚjS6[ж'#np[8pA\~ "lVuE>>D#%qc#"SxWcO[+D Ӟx3g~tV@5{~JEP' sE"?"O\le[poe/9(=_4\lĐ ,Ewq~}MӺ0Fwv.Si9e~o<%엏+h#Xf)+JH%dq*w=2P/\&0Tz.૘4 ?oqQt-=u iq݄.(|B*~9B~t),K]YIu CsO)] RY_]zn6sn]}eo/ɶm~Ku۶8Dm WlSZ^d~TlkLhC>ğqmJ8#0pүY{k&}Pf'^A*<-8[6XЀ`E"T Xa@kuUA ^'$6CiNHd*G=j}v_z0KQS8L[ ^8GYki wj ׀mmBDz TFս-b3> GPě̽\XMNv;vRyzW@qx?I ;dP7'1_a_lܝ؂/C e&' J`{-qY NVКnN5q_ śazH)ו.X>SҍoGhB>.:`+ekg]u=(|}xS^mw,7֩_SN-A?EDѷ{'lV8~Yed_;0WN3N IDATIs\@U l.7rl!fBjaha n`2$\R7Q@JtNVH iL8j i;žH6T4O12 ?ucNYw,;a:h~5E]ʃckF)XVг0/*/s++ a acGo^ mK@-9g-A1eאSt냸vLOܡp0[٪U DUrWjoxL.MsJ ?mBL]^ l+]8U S 9T>nIn{ԯ2*}NՊr_xq✄~ahxk㼵^DDvWr]~uzR~aGa>v*FHP'u_u'&gZP*I\#nM2KMFKX/)K5Dt]&ie@d7:l 1QtEo9×O ,3IAdv;3," 5p2ܣ[qFU5FdTDž%)ènͣWw8v&vBM%JM͕G7dgq J$r9 TA7l4e'ݗ@sUeȱ$'1 xaಝr=0%܇PO.G% {aWrG Xg,P)nf:'ҝ^-E[ERuaqQab{CDG+ 5&j".뚛4 f+iKs sw37eE<ϯm_9m^k߶6ċdb(*OB6X_("g#a 6^G5 A]` 9pN\#TkJCnN؇qB vKzgHJbO >xkB1JQ1Bd B>>y0U< ܱ}*J9g)g#\k2a8_u>2X;O0sHbsTnmw2~퍃-dsғ {kJ<3o۶mq'ID)XɔN9LgZUgmqlqK@IFuM ^md5/5. pN_ ʮou)G24"ءNm"xP0  o>'!7s3(J5#$w3%-l1cn6bI$A97 $n҃=u_N";ԒoTV1% fD1 FJv+RxlNq8(;m⹺eWk -nQ9ԓ3+wckTZãeŅxN >I^h+&3.d8XS4dkl<(=Mփ.+(ms8 t@#px__T~l:H? rU:\(s.u5Kw{Zkugk}Cɶmmd~)ƃH1|gNRp9B+jAE)`19CYzIO~ _َ=Z Hm{^q]9C|y?̙I _͇˧Ϳl;|@*A&1q~;5ՏɲJ~sc/PEO)7田;_ S=Od-= ƻu~O2QjV4HFPZYI(XSe?Uu'Xu&,xF`uRK,w|Z6iӾ\}Ht\BAV+)+uDhzA2!~>]r09"ц6e&u!6Ez4RB^&K5Z/ng#$QVq>}j05ӞVgڐM/Z\7F]@|k}C֫'N% J+ß7N]mvy||ٺR znÁLv9}P`Q=>9Z=R6L` OB G?1O2CYи:^\t/"]ϫt50. " qɨafXs4#sjGawL&< o&JR ҏAлG mbݳhFb98gb G ZyLY£u)N iux6AwvVן{&E%Iz(s~q2uqҍC+feog8#>*>71R<_-F.p" rmN[CW*B̄~_x \N拚uWx&>_ށ:"SBk+l0xl``PxCr'~\l xAԌQH4I +QN}KI`6pPXq_ydJ'nayklt nRRSj ABV1%>%nsTbf%Hȝ̑5*|պĠZNy:pӍ3]Min[!ħ4sVOqIs\rj8\G֋fFdn u;^)^L+{f흾tq}Ͼ .ඞ]z>]̯ *.KĖVHTGuM&&x.bEtj/M]%ݣODŎ9@u>eW0t3#|*Y`()3K$&Q]){ȥД0"5T)k0#lSk:OЇp&m); JP`iVfhqT(Nm. #  i 9|ݴZ j+78N9ٮ L0̄]TlvZ!0ǪH!U`CgDQ"Ȓwʚ}=T̏u'(@,AWXuUv'0'wA@Uˑ:ϒ22=*.viP~=wRp2~A{H|..'5h#|DMߣvZJ%)H?d6l#{3#/2EcGT$IQ!seV(fd !jqnw)_ʞE$KODi5H@@`S6k5s9# "ƪE}AsI DAwļ1R88 ?KS.xDz3C ?|Cuk .*,W`S~huǗ~&M7}iq[5A_IG~PuARaWY9S{ I祫=l*{=)Zܘ\] ]fy)g١g&ZhN+8e wG)$ ~|w?{V u}*\{+5fm5&4m[Uq^΋Yy^׋0ξd"jGJ 09SW\ 9Ou S-g ~,]oJ DA>Q?ڲ,LjcPI0|{tgull~JuMʈҫ -7ɰPb>?d*aY"U(}tgR50s4=`h{6hBŒΰK2^paJ̿5 jc*?ښ"ǪVn\`4@3eCvm؎uە)̘G"@!`(Wu,+7q@֙ RpPOr\Vj)%P~";ߠGNcz1"q} K?ڴ/׾.40M2"x/]sɬN}4.O"RgB2 g-2v %eO0mS,M[G`M(ش}u|HiSc _=T9eM훊˷_n`l% ){xw 0m8>b\Q:f2^1o//O_yE SWٯK`=33H.*xE8;dE xw)^\~Zʄ g:4< vZ swB _[UB'C98Y/ηH:I-gĿzj }:|^5.i_]DDu 1I9~-~l4mmkg[{dSeM̙ ƍJ%Ȥ*gA*~7zjI'{|!d C> Ln֧B fhq˔5AǙa| 'pe^lYw"݊RX7ao m?:8iΟ'lA{du0"xQ ?FU S\vonHh016W`4_Al:k=n 'O'!/½b-ħQ ֊c8&*fVùv&] ]7H 7MEI_,z+bVLafHc2XM':+Ȁ,6[)+|aR?z-!q)ZIi)įOvOx|}Ihӭ8ܶm<}Ms^>mzfp6nQ `Tc&eTUQqV0G"=~Zt:Os6PEɌ7杔~#sY=nEb>X6>finUx˙Ƹ̧c4 ϵAf[!$w5 [< Lz~j1ݸ4%LYhAK5|vQCᢄ˞"ok6e2hN%nŁi!غi ʜ4~:n}1:2e A29 Q5`RAAC@K?ŬJ$v9mAɾU=GkM~i:5ݚɻ$Mpz L %1-5P_SZm(FoZ*]+%C@J Eے]8+B`/0L/X6TpѪF7TgU ShglmjEs !&RhB9A_("b 4RN$u}*{_h?3s~8leKgzDdc e* {R3W\6ʌZT,}Sm]a5~ a]O3C'!nSr WyWm}@ee*gBӳ"3}X_ϛj88T_zn 6X&_*BDdcUB{34Zaog3кuz0 '"%C'~{bș̭"K9.7R"ՔVǫ~D|0Ǻx8.XRvj(E ~ 3)W4^,>!(8c|ZA I4d3Q\DB[A#Z@#l42|Ѹbmkl̄5avXs9 53Q{D@EsPK[{tߩ,+ E>mmqK_cmڐNkJ Oԅ %lKCU< Pum^ʤEӵ/sOklWcY5 F nC70㳷Y4jjߩ<3̻DzәauъKbW@*(!u G5͸IpW;!gw^"9-k5.anpdH ̢Є,kT_- n   SX2Q*{R5j{ Ѻ &֖F|zSgr7 G'EؠIpkuuBa NcgV:eG e IDAT[BUnʹְW+n%A wqEFۙ텢Hޔ4ѕLhS?uȗnj׽%qׯxM7.pI4FI;0ʖ=w+h{kmS@QimXfZ*?HgP݂؊K{q 5s8p7; ö roomq#f>:#0s<$,Ȅ%FaYbBX#-@zQ=K_fLWM=pNd|NTȟ<PȐu⺈T,@́Kt<>)I3SQ m0@3sԶ,hMWى<}߿xmkqWk8yBk%pl0h;YӤ=smߘyxmUbdly(@4$ . $J2uH9n wD00/G sepdN c}S=Qsɰ_Hٳ|IV$C\ssUm+g. r+HxDء"Jb-!{;eo7@#w{_>>CwR65ֱ3rZުSXv_2]VZ5ޮi /fUZJAqcE#lMW>bڃ_DϙV`-˕SԬN6#=_e@S_w Ӯ'*ޜk6/#WPEd}9^.oEI2ӶWQbu^4\$Der:8LcW ރ *!x ݭ|}쾇lɝ^Ie.ИEd߷? ]w?Ϧm2>~L0STr_i.Hd53[0?\wwHwc@D ?ĺ8NO=_vh4-Hcknp"t39N)_\aY 2| >hn~pRueo1zl#4uW7c)P.ImFk?Zڀ#^$*IRY(6@UK#A VCgQ?'7℃i(1+;|F3a"ES "G› Ik;[a_ tR,+˧Ag>ApҐSɲq.uE3YI5ן(R9Y*VMn2*S1S;.J17~lBg?WQ՟ov]}M]e\Dꊠ$]}'ypr&ډT -܃oja+D 5I CJɷXP@}NAa1'G$nLa{ox}+(qX-@&xW=3}O6DBw*sVZB>[n>2%'( )I`2Kḉ }G %?CܿVQgIFG{PExD;&U䳊[\4#s#.~4"xv7y2k3@} Wv304#cV=oD])E<}?}o^j_qI$}H p4]T^UIh EOꇥ l4uBN[ݙqK뛈_>kȝC E^5JBjPsm!cp]O" /쒏) ).{4d>GC=sE>7h-[`&.bjw:WCՏ.>zva N`[zv3"RǵIU~ݓlOH D=pY3&NE5 k^=]˧)(CXR)@_$}KS]q=% 55w,H*r}G!R5JsCHsL8"gd}ΪGгg e44Nz責|p!2MNWu"fAc5/ᘹHz~o'psFZvǢB$'Yu?t\S+f`FCYLx6?" X2MK:S^D^rS[N+`/ ?A#̽f~Tܪyn Ć27Hza)4QFoW!j='r3삷 >kUPM[UkXtkBDTz3+n>&f~r3_Q@u5.cg [YA+uj_̺UF1@yjMۥ @s+ *ꢁ ".i{wnu%)yn|k)ћϷ?eUU=*8zBѪ&1b*] CLZ' 骹:asXg,0~fRceu:2t3ͬ xx(ZqHzدX ]lyGwi]=Y2WLWߪ~B>CVg U)#צw&!u P&̔,- ʜWC5LX m6@1 pϓėNɘ0fcg,RRJUq n?"=Lm^}۶ȯ}1wW<ӁwS2$@=p8"nc~oUZOg}'9kt\m(,}+w}778UU(GȈJO @_#'ءxWEbx\)3db2rP<_A<]u |e6ռUɤf?@9(>j7ڢIF:\4Sv4 eW_8->/i40SDDx[ V쥔}}xPQ`A<8 hby6X"`N;O%~$աQ,VpWMpU.r5/hCO E5?टe2lfB\4pA{ғ@xʓVη[$uMuκf81.B3Mj"X_^˓T2LDNSҔ_~~`_pjr,z{*bKoun x?~희JuqrvhޭNqW!KY"oBbH=̏LBDUdĆ;Wr89:R@v #G]fH`hX/ee.v[䕶Pohs ơ_J!5Jʇl7ewЃs%6{C{TOo9K+gvXFe&#sk(ǏǟֵK?F=c(Y:":_.#~mek+}|"Ջn:|ƶHi¶[D<8u=x<뺶.em9fgy-CT2$mg$GedgpeМ;Ays=)8ΖMF7yf .c8.L}xwn]" YezA06iYwՐ9#j gg6K+M{$Jl<^O:A0_"y_؅3CsSQʁrsN-Ff!Ң`VeR[0$6?Aԝ=)}*yHM14 3cB \ V.oQ%smH[$gs"]Rd]+X[`cxjp8JIel=vd1y% B+v ׀Вȴfʌ +qP'aY8myW Z##23\.},$j]>!ⶩEU{ Ughxز& ;|;reCW VRlI5$Tio`sٚ` ` *R>lފ2W#tiy Y;Q_PDPY[}vx90v< C1rXA.k;x]{N2Fd|ee_:$:q)VW$ЏR$}y:mQQMSY "@`#'= õM$RwԞa 4q<_thȫnBuŌEV\bgh]hOfԘ 0-e;X hW汱*2_ ;;} .o۶>'mtLiϟlMcQ29'z}e|y維<pZ[>Z[k+X_wosICswc*~v*\OSֿNI aw,ᚂ:ՅL겢\3,H`0s)yhR^3C i¯Z+V󋸮X20?W 9e&chUMh_q?KezUc߅=gt#vx|(fƠ]!=^e& P=8(+UIs2亥7\"*X+LgmwlRcmY^2Ea4qVE(YY=xeriI%1a ,x#)LJ`n"Ѩq~qHɰ8}/≮ B,hM7DcQy":mۺ[plm޶&_U4m dgܤP3Hŕ T4&B84)׿6@AAM×4R5ؒ6 (6s}z7lKPDqr{~+xCWz &U:Tz]Ds;\b4a(A_!#ˆٯvhW%a̐{3dHMHyԻK^إBVߌG{f|q˥=yF<"9'Op V[SO6{E!"C#nxPsAn1zV:G~a/Oa]m[mK]N*31\! )e VqU.[J(bN\!29/C3E(8Fbn]*Ѳf^ҫ`|1L]O1wa\Ȏpf/ uh3"EhƠ7MB(!ع@] UC)|SxQפ/b@\A|N;>$J5׋7W'cMW oC7FX?Lj>65.(WN /⺨ #^w5.}?g9axDZ,K9VYXjHk䢵(KalrBT*DTt襹[hK33c鄜8 Bg@cIk-%L04cl7MŝrslvY SI千16=O- -mP@j*'NKT*= ƨI{+pwQu6QCbJo3f֥TiA4x0K͓.0A¾fPz?3$- 5 ,~Kk"m77|xDe@ez<:QJeu\FӇR`$F"+X}ٲڑ p%y./A?6Vͅ)ͩt d+ .h%9r V#k 32uHt |ZRA:$y/" =5Lū5rM/KpDt>>DTaTǾٷuP}թ瑭@@]n!*X>5-lq3w @H/(gE2g<*Nt۞ɭ=1",8])gj路6zB PLМY :OW,7)4˃$nk뚙ӒBC3!P^J~I@^20^) 4tå;3XЦLL@ͭʏi 3kE؁87/Evt@ j"΅U)k"`\v]`h=^DIqtyvSMiZD׮2h\s՝,ftIXrѹILv;Ṛ@E4#,zUNCbVQ=/A2V&(| rxuȇv&qYAP$< MiT=5SKN $L}砟$ Sz,xp08^FxUh: QԂ[,~ZsŃ˯=fFץMFc3 CMHZ@j yS\%|pfY"1TeaILa/d?S>K!Y\،&L+T4gelFvQ3y!V*B&_rxD@Fw( xݴ4ˤU%k?4'E"2cF:E21bhP/{g=DCå}P4z~V[|k8ijԲmy~\~pT@eQvV+'([&8aL,"}˧a+oTgLz(߄C;9(|\a ek\l)%}.4-&"  wQK4wP{+VK.t(JZ+Mb!mٔП-g M,+ w##K]̦Ia|L|QY z^ 7%L>„m4wly Ǝ)EY %^PM ~ݺK!x$ ]=AR:!LGXy_݆.` #ELp~R a:o oF(K7n7^ze J)*H*t\_n ~'V'z=X9@%xD$ģlzΤb":L 3-iE>Oy@w/4Lq @, "3s?'Z$j I@$^,WtE"["yl=Qu왹2`Bː!^7R{ˊN-slW{S~rw1p,xgڵm+2Y~Hدum] /XG9M֧x|Aлx8MX7S82ϰ}CI pXq9b`z)i0tjpZʩ qSzs(ZRdi]lvY*C[PnṢd({-VNK^iVj#Y*#I1w&>6Vcp"=LɡѨȁaHl[ҫ:a]r<ϟ??ʽɑ#1ݖ,rD-(]ϽwU}?1$U&hdoOt݊zbKID뺊ou}>mE}]ՁTFi.&'z?na 0'zw.;M:1Tz[Zgb JlsQ͛[w'fE.0a5!r$QBk%R7ވ!4G_IV V@^ke-b&sNG\`rBN cC|p4B+p]<9~n`K 5,op5śI.dl,1z{ <Ѳ`ZYX_IX~+EX6J(]ZW.zۿdp:`;+4D(TDav"뒲)r,@0#ۺH#SΓ J[ݶm;"<.v;mݶ]!xUi}΋ǿ!q-1D`!(?^~yʡ|.Y酌@*h@n4Tch:eȊ;o9EoT';ӧk? $۾BEg{3 B5}lʐS0{eg6,n3G7ge;n6@8]I~yba0\Zg|әAQAHmUG9F ʒ LD*= JlgB0DZ=I׿_刍fB|e@~\5"n/1r 3 Q*$^n/Ѧ+瓈uCv^ ^svX61 t`A<}VzqDtn5J{˺;C'GJ~uHũ׈x{s10{)x%8ђk O!v<3:g 2f(vV ,)lskMV%)Qf(csTK[ _L_&'j(I= `ԛg Q[ZRO2  */#)o1/n "K%ZR -~p|.$&Ֆ e)eaxHQ3i~'"x>}W"m߾}8  Ӂ39xLꈿHq]n(h,'4n`Qj[e(d :kc޽'ӖyNcE\4= "pف ]ph,?`ߟqn۶,K֓8uT5V3f1D(.x΅s_1/ĶCA3sPƚK]AV*mYD%*j5!g4Pʀ,-G!GM̝J= Co6mrL`' 'Wm`0O4Oi 1Li?Mb S{޹*e moy49Af|c~H#}O}0 n6R̪p~mp?hYgZ?Cf56VF2a]s/ 'Svۈ8v۷m߷bK)8 icJ4SQARW괽ȭ9%/lx5 ac>;R6Gsaz}]z $Fe:Zl]g=dryh?6RhyrdJCG+Y]dp|@ނ ÁUC7*_ -h@"6Hg׺!2H8Hz@9_x=L78 ͘ 1q Ck4TH<;etMw)|gv\}>:g`YQ鲠K;|\)P jkһ囩X˜r+?{Y?'/rp$h>\ֹ7fvУS`iE&=08*Bz7X:ˊr(_3Mw"|Z@U~ik%ZKpGߕC[qRҠ&k5׫"[y` a`  +o`b'Wxqdk #{pԿ!{v14XᎼN2a0{ iR놀>uNR`Z*8 FO |`=z%i_+R}H.Gpߚ(BO7< )8u)˲Ǿ,q|#.J nܮ_jWDT& CHKZv[Xܶ<<vCJpD^]֧Ad~ȆkAlF yZ0z?JKWcnIB?|r ֡-#EZ b?-[싸V4ZA,D+>;@_䰡B k\t^}h?́kzX5oExq=LDZ?d{9>oB{Te?RȾ"N.s2@swg%$.x~_ŒW /CxG~DZ,騺$fTbf|qL9K-Iy`t|I˲lۺ Ⲯ @1oިAp m/5Ppݬ0JM/lFWL2.eWb7!ck%E$L> +͋KHjvET}}W$0? _ˁE2"c0/!xH:f8Hz&5+hFAIŁ2ĆF.Vi DX`Vl[mDG7-BJQ:Kue%au {%8T 6G:ٖO`T2 Shv"fpcj"Xnŏ0rg。2w{o/5kBw?ڈ _1}-ThuL0sȞƽ$3\h~\BN;f%JE>RKDv}z>6SbЮܑ0*x=iLޠ gRbV Zկ$F~ʔd쥤7^/dB.]?p$\-#OC]%"ސ З@SHl]Du8ui4$_g IS+{H|h92))>^-@{QiHVvL_ gvAW 4"Lo}fִK/BSV*IV3p+Ag8oPdg# 1Ք5m`z_%UrANA-Q.̐K!c.WDfE2b(pr}ܿK667b*(Qd7 t})-=\&{^b ͔WBO##IE @F=)X0#nYO|?@şb6'4VrHn+b rF*tD":tlZdg]ץ)GoV>T/`ˉ fAؕe B!3X/*jagO +)R]霁bu|4Y]o=|u<_Mn[^&*&+OR͈b\S2u*aEqi.琽3cy/^8ʼ3ۄf(LiW@)O~!eT,'\Nދ5Ԭ7͂Ih@6d8?"' P1[[g&t3A^9>Z*F7JS0-ƅ)C |l0Me̺eYv>>%۷2BĶ}\=}1K'\K~՜<(?^C,~g@"-p(f R>)w#^p2tdx=cdMTw -dNQv)|xӗeY׵}驜ip bS{ ns[c+8;#n{D3̗`4BC۰+ ts_Ǜ-uɀ`F O9.P7Z)}H|i(g Ȍ WgTb$ƼeAe_6$&|fΥ2̛[MyS*^~[xLbHt?ۿ˿uCdÚg1e ̶f_"f[hѓĿt=pLBzf<@6Pteu͊ũbזZ chyLMH~ Bn%As=+:Qk(ʨ여?"OY8i*L j7pB'=H_>rzo0vg%&B _^»o`Ҙ .i4un˶-߾я{YN%o?׿o}0'2%UK/x3utqKDt'ۥr< 9 *"篷"q0$~QZjGrfY~i;1azK%c3{\X,sJϢW#_J/Yշ. ]0;}NPB.Se0Q0`j %[+lc=YA!sfEھՐAWXTSM}&_ͭdDd8\/m{u<)}|C鍔yH_۶DVyn j Kv Kᆙu]q!uqFHX\X咪x!crǟtYT"qbzije˂ |8C~:J38cq^#p߼|x+Iע2ppU2[_ z4V4bey[N,'3~-sfZ06c(\4sul9Uۑ5fu,߃] 3h`C&@ѼwJrK.~Xv8)3䜆ub(>#e4;ž3 ")(!.u73n tϟ}?/+z嶜rt -",tDmݺAem'ņCϤm[y,C}}&'^XL-W; !qDVEV}%N'F6'zmff$D.\&`w,$qVbϬ0zk @x*VJQ"9cɷ6+X>m/[ ˽%2Qܔ -c!S[PIq=D$sXzi3f4CP=+{2 _*mBd_ޙ1oM2^5,8kkIENDB`gav-0.9.1/themes/fabeach/ball.png000066400000000000000000000232331423175241600165640ustar00rootroot00000000000000PNG  IHDR*y@bKGD-? pHYs  d_tIME 'q IDATx|yT{tLOϾ 0lYFEh4B$ R(G\DS&1Ia1LJM4F~&QEҷMb~ߗشӧyys{ ׾\cYQQaZVN cccdrϞ=h۶mhLӄzJ}(JO>k_i;v쨨v?r(:NՖJ\.Jd2F~aI~G?$IL\OGYpa$O?sꫯرc} !۶m|<ϟ8qT*=s#o߾}޼yӦMS%L&sAEQ~_ןOwZ[['i2FdZL&LB<(G馛?s /@ 9q}ݷl2F388X,CТEibǽ[6mկ~opr۶m?ݻ%I6mڼy*++"0 x^GFF6l`ۧ ;wYT*M|X,t:Bht\Zk4^w@ 044q7^۷o뫨PyDQ8.Ji4әNnݺgϞ֭hz饗VZYd2 r9BիO>66(,˲,{ X,:?MW^yΚ5+WX,bVX,4MBoT#[qI EQit(N( $I$Qp8|>(4MsO ^Im ,zxX, Q3L8tfJ~푑ť/.\BDQdY6yEQ5,ˢ(X(e$kZVk43r9s||<BjJ$q,yQEh4VUUV}&N XsΥi:dYA4 U6D"XVBj;EQŢF1nadd`U!/E)++3L&IRT*(vI>䓋w -]\(bX8pX=z銊 p8D&A^eT*XwY~?Uzw):uV[QQafjxQ՞m?vYfY=O{N jMRPvBZ`@٘J.lu˗WWW@ 8m q]v{0:;;v{ee^3|ڵkXuŊt֬Yvd2lK&DbyMM ^"+Ef(zF/(g?7oX,G% _?W\qh$iM&See`b`d2i4|Nu[zk65zGUTAZ deٻ%b"d\re*. ommm555~+^履~pcǎƝ+l6RU(:::<$I * KT^"h0 fd2 pul͚5cppt:' tppT*,if&L"5m|^%&) 2IYڽ{M7݄z M&`v(j4͆r 6NjTCQ&cddֈH4R"i$\.x/ äR)e/ Rq\&ZD믿XVVo,]ܹsN7޸o߾;wwB$I>JQQvŢjkk! t:v(VΛ bHtIEg$ڷoߊ+v4]SSc6-j0L0Eh4"tB@?-eeesQl6Ws/Qe|||?Nw]^^(JrrӖH$t.S%ԔGс 8P(4E`˗/We?#`^/]P֯˗4AEUzlVSMӐ=`H>/ ;v "hj,' h8NŞyͦ(J$ BL&p XP( aY|ڵ4M d2`GK__SSf)F X]]]SSh^zs{E%ɱ1pdp8d*EQ\.2qf"!pԛL&4@0EM6ܹs'<ϗe34MwwwfTJl6klܰlpqD (ZtJR@Zk4D4$Z%B`0Pe0B:>>88NΝ7,MX2 z 7TKEB$IlyDl67X4M(tEūd2 )u*VSSC$ 0<֭[7oz׬fkpeee6 t' e9PBPXVVH$@}}=˲ַNG"@S;v\.8ٳ !\.b1d T2ŲZxbABT:χP>FށdԍF äiV 4Hmڴif,H`,͆bqj-h4~A@:;; sEQP43R po||xxl& |DŽ ,Y;`ؿ[o%In7g-OEQ`b4+̙}E8pns\z.@<Ϸ@IRgϞpPlv˖-N3!k#DB6 HbɺX, DQ[#(`*`'7d;c6D"T*e2t5`:h4)*t$It !#' Q͛gEQD#p qx2ݱdkk"Z ,w\G9|Y\.WXtu!L`6 y0JZbL$8..\ht8<<Ӄj?ADNR\nܹx4zDdYƋPn1<І ԐeBP<_dɂ ,K6 Bt*HR)V beYab2L;,̠-tjpAb4A`~N,(׭[wwf2!e1qt8,"(vC5n>$1c˲Ǎ`ڼ^NC r,toC8pEVtɪz{{8Sx<N8Sԗx<4LHiCVQEB/P(Uc-\PYM8K.+ہ$a)lKBH&j_#M$*,o9/Y`FyY%Jq e(8]Vu^{mSSR H*rrzt 66&V<OӡPJ_p!V52(WQAb{ڠU:γGqʂVEyA,Ř677BЊFBt$ippP ND$}1AxǮ!Jj{ŋBM< nѨjEGAr ~2t8]+ٌ``0@FCQDA !:l޼yΜ9 'ShA(S  b˲H$e2LϘ1X@ l6o 'r^:fc]VٌL&~Jݐo\Am'˲D17n|'ܹs C$q1$7A'?882w\^_QQQ({u/k͟| Qg||3q,O(J_ϟ;@ġljjxEEE>( [8C}ֽ@榦|>0 r\.iEMAƁ8T^;wܶm(]]]ph`` a.!VpFIu "]*lś*Q(t P4I}X?0v6 B%IŒH$B6'yqF('jkknիONa>˲̳>{7JF=QT!I S,RR t:?c7z+fSR펎dᱱ1A(0 0d2J!455fx_>E̙sXA1AĪy]{4M ?b1?>>vBoooW2ABVF5&MIDATX*FD\0Xp; ۷okUVVvs t DX, FGG-[j*'\yX,[n (2RT{{9%~͛7>C-z㰋jc-0rJ~*jmmLhZZZ^k4{3gT?PF YfA tb1.t:` |]cG}RmuuҥK?G϶&mڴL&3::ŋZj‹|JJRmmQ0{U]={(2o޼ڎ3gb/r``@Rax@GG`bfX>gΜ ^͛7ڵt₂V8#LbKj4ԠH_~9Uh4 sGsgٰaC:(ÇZ_|]$uNg6.'߃Ȉ$I͗=_ϲ,}0aP̚5 21 + X mK%|G4Z[[9(aaq=Wjkk/@z衛oYYVݎIFs.Ypw#ёŋ_q,F"֯%3S߰aC$bmmm R)d$! @AI=|]}lٲ~4"5m@_Tp8/{~n///hˠ:S-fXFxl6%!vݑHjBSD"-ZŲ,2c4 xjwc˖-~2L___MM @C`Bjkku:ΰ{*.J*aZZZ0b:Q'o{D"rpzUv2Ϲm˖-bp` ,BKZ׫Ήrd2y@HS\ ymF.\>t;;;Uv 7'LѴuns755M]_{pou]Ut===CHٰaC>5kƦ&UiS{\ [)^]SUۀwHj7޸?~vw~Bv{__(LF}\MӸJD9l͚5x<TM-[`[ kDtHXbE馛/Lfx۴iӡC!nHp?(_+6Lsakx 5֯_oqx-uc2;iŐk Co9йdbC_y{uAe; =y/ǖ6Qcniwv*GxxOk4,w ځTs BNR|VUe,έ2o?>۷[`Lc%A)5CQ̺aGќ~p4?Yi&@o}ls~#1/bNmbے)1ABwDo\`G! )o*j,DžX{ 6!PC /~Ro !|J2RȧGl:iNQSXiTH+|2'ssyI2*JxXT$Ā g2|05:3lø 0\&Q҂M 7sw1iyJ]fϖ{_el`k91*T=N:ELx"pa]>𮿧_1 GqL .e!1a'f]BIz n@]f7$i* zd(E!lԕXיHzjPŒiYxF^˿0Z0ЫfA)%Y&*M@f ls>BW`Hh\!:2j{ӈ9C~LQU4m i ?;̘a׻|㦯q!<&W$ }E`Ǿ|%xթr* >Yh,R! B&Iz*`A90 F6y$ LO3dIc2 R[_%4b%`PG9-SCitU"x`c,56?-ˊ7dt H>#嶣;M^{fL3Ѳs\ɋ H*E1\l =$s%FJ. ñ2HmT&a Rk-ʒG<@]\(buSٗAa`F2m|:htL t~I"e=? YwL22z߇d(#G$k\a泟a>~%a!~YḱwTb;R"VLYL9ٴg̕^J64؃g_p"mtrv6a^=kNTZ,/ ӳU6&CGG`2g^Dͮc!l2VI|1)vtAƘ'%>SH.\X] i-g̕>"2h^QMDPZT*6iVBV"& ޅJ}J Cş|;n{t6ߜ0=ˆ0^0iA[)ڌcl3υL3Ku+Me`Υp cܱ48 AXydzw4u3h/n5A,`#Z9<'lGx]IK!OKimД6i޺fIGk =fm˚$uw@d~ h}rHfEL/zN3]2-Zth]0qxM ?+o?ྯ?C\6 ;p>>y(=R/d(_;TH{!:LFe 7c`*[zwKtkĘ~FN{oXIN@ѣOB܍`ȟJ~9\əOXK8RKwo~LAѣGpSG4$?3W7 yKS]/օٗ|u|w9ڈB`G0 K/AEH(U4c`xJgٴ6'rEkΜ"6MRV!ʒǀ1X!=Y٤q/E!NY(wtEBL }|<$7I<;sVlwǣ >ͫǎHjw|;Wqޚ㑝W8er"X`BpB1̐ pǏ:Y;$\ij8w9' IS9\A_FqX!91uG]g_˜,7ZOm~MJqM0AykPcL2YnܠmX>eH,I ˘]~~eq4X-|ٓ+z<Gk:bfvq&Ip"Y'iHE..z ߗ7F AT"P Z:QJY 0ESP_\meÍ_@eIӞ&{^ȷ*#)#'6qC-S&)&ķAOrcMYT)Q y|ʮBL5L# 4u’sERp5+k,uXi8gٹm(xIN+s{[ܷݤ:7=8w%jQ*%u|/[kUx\,8eh U"BR¡08@f?s7~rka#b,KqձJTH'x8R@ 3I}9o$q}IY_eD?A۬H;K!{ZO&zUbhN!E@HT`eegAEsgrރ)dgx"*yԇxGpuZCaB{,`i4X)8' o4ox9y)*I*ľCg'أI%pN|;=>!8A8)!9Q>.r(-Oҙ⛞C*;+Mf7ӧ%3oԸ#D}8m<;; l;j8sǓ~*zzH wi‰GϝhfnW̓7_'ba᳸9r&&iaTf4Kӆg&(sn0ĩ :eslH"tk&/Y.︓s兦÷+| \9j['+ttU\NxY_o:/{]xrB^PX [Z[?BD1gLROӷ>!w^̳UY Oz*1|U+nKOAjV$JF-N {#Hqz]fVR.\ q ChG*CW]a(֭(hh4``D(=6)3QaWVb'l/enpT*YdH/˜eD<~[0އ}dkOOIz4TFZrzh6:FW|f篝`"u\2R0YKdRUtLLTzYuV2CU`~xFQP=-/<|ixJ"NL1t8l47gW LpZzVw g'eBRjtD4uKhE_y4KG̳d@#%(JH $=8ՠI&p HTK4Z}$##%ÒyMiЛCr X|1E\fuB3|NJ87+(_Q)^( t=jm-}I+%0Az!Dc')X# [avrhorKh#XgIEƎAdL'oRSj‘=h hN=tڧ?X艧I/a^Hkb($-;(3ȕA jUH{T{ h{>auL-qF+@J2Cez1C+`XN EyUNGrQs=*8)b^aW]tA%[ w=""|SƑR'GxmFX+|@p&`%1d+YP,4|^haz(N|t%|~c#$#tC؞fJ(,Zg( \QcI1G(  \l/wv8- [͝x.vGG& %hc+#PR!HD 8H |0jo\.uj`8񬚮S$x44_M4z 6NgX3c 9pOiD=B%i_eI gWKܠ|NxUFEͦ2z=<<(a&[ͬ1LyL-qƯҮ9w}HgؑbɃpuD8QEtnXuFj'^ʕ^h AA`1>]w~$e#jeMBeI$t>9ɐ7-N*ʧ(_]'U_ļI20p \5j=QWJDXZdd4ڬ|YYhBNqLWQbyO}{~t}ٚђ`U )NI$@9L)kEJyh־h5iM+-ǃKY )"itX`I=t:(0ƐeٿNkrE-y[^j* K;D*%5^x?aF7li#EOJ@߰|DP7~qw0T\/̑mL t )3p/|\+*d}P}p$B<"_/~˔N*e!K2qa*t]ݿ ^0fQ.ń`\Hzhsjֆh e*;:x'߼F=okunl H(.UYzB\&4R$8CY0_FM 19ՙ]4&lf3ÀИn3c:s#+@v%i-mk|b!v\2/=M|X7Ux:]΃(⋷~%J8*,_@e#L. |kl1[6] DtkuHJk̉\+ۄ Z8u UsY}892=Oz>?u*N8WdnF7|]7pdt@[t>D+2*rXy=8@k(5UsJBX4#ֲdҲcI z(Ch,YZ mR[FYr{0y=xU_}o5Q(,SLHw)jEGGAVX PmFyvAce*!_JJ )4H,1-;+4l:aAx#1eoz~ .o&HƄIBl'ȗ%@8D]Lrx'la~q q6Ìe6ݔ#EO;6gvv5rSe@`:j''S!i6 +Hs4 Pvpv3 ެL-&#j,iBFsv7+S% i q E.;rB <)_G8<0.gx̋ =-z? Z ?fG+qdBT0 SU6 hn7s"w޶FvỾu>N~:M5%*[y__NUy=Hujs~w#ihc3hc"Xk _tɭ!51SXf:saTNxA3;Z7vߞӚ_~᧹??DBȰ꟢)&s_}2 >Q8BtGKS( Fe&bwgjߏ{7 Ӥ(]TmvϠmĮ-h_B(NnSc{U^G^]P %C~y` =NA09LFpy5IY8n1t0V(}{lbYu Y_E =@ O^,◾k\ Q/lw>= (8oO֢e Jr  $'{;Ou6Xgƅ gl7!c+n=vVR;{?e*iRfYB 8@k e~l` ёm۩q^qb>> +U)9_zS9',vo7Q\=־HLl!*;8L;U֎¿} z%Q q^w>na$ ۞V|ml*ܙIqg:֕)R+~A |`P@!x8~ͫ8FrOYW$>م3W ? LFIlP^qk8!U&hF Ex9Vt]^}yXuՍH=ya$Oõ\L}БYAމƒKwBN %'x/8%g8%g!7l⿌\5l+&O0+kgOPt.E 8W<-8}\q WN1Sx8>w5&PYѹڀ_'=hO=וG ^㴹bCka`k'QDmx;"~)O(vt0*o"$ıg;]^>F/}UORlY'O?)9xnAŁ'KEq,%hpPM݅.泛䪅pS|rF lc-;(L7c: tU曐y`3\Ҥk$(PAx@dHY|zGcM}[R D0%XrP{k/>Bu~+V*W\_u-ᝳDғ]Tj5jM͑N!G;p&G@X7(ʜFXP#a. `R W ~E2hXNv)5U|d@[P!%q,c\ս$γI ^7!%9mOIs*.NVkE0Q]iS1IC@,v'q1Soۆad¢mq5g_f.oAy}\8O_6JS2qV` LPjRh5α,}Wtg}r$3R`"䌘׬`OƎ!_aKm}̎یֆ(b؅SڗXHV:50^@.Lߵ9Nt!SˎS/F.[YZj:@ER RJ=5I:rn邌zt]ԙ,]]#088x =Z~zBηpi] VdZƄ4ix:n҂9ΐ1g̉YwU-kKR׾&M)Ĥ?0BqW߸m뮻nӦMO=9Nw[yUa",D@G7yjd3dsU cX|U\7w;|5i$( ,"&ew^ڎh m޼n:pkomkrnM: #[Y9:gvcˑDm9t3y!3~nՕW- %pH)VJ)B"QHn]WT*y>z-ݻfzgtUkEMOi,6,F@@*fW~.9mw}.k0D6LdcˎP)tM>W0D͛7'Ј8==~U:R䌋m|`!q2Di2>CƜ19mЍ $vlb8mdٲ8LƑXJ{ZtQON=9111;;qLju۷'{mCʨ^UN1Wt<^@B AU3dkmu+_)O!"[lǭH@ןKHIZkJjzEu]}m۶Yw{`sCkHQ)x<15VefsipƜ1/Ŭ`lX2 ] BF"BBD$x%HdaTāQLx>+9D}7nL ;t$$ /Θp#"+NvEDP);v!Ꮻ?͍R~8gsUgTE fXHm] cΘb֑D3d #&!I$DF$JPXbJ)̎'[)>?e~ņuj[j8TD>Yֳq+n7QKF8 dRڠ'lG8!iwAEJTHdI" RN9""TPጝ9:Bg%MiÍw4f$4Ŷl8Zc28Hkas2y)fݢN+H4'1$¬M27njn#$M!YQw׻w516CBDZ5 0 P{@Ɯ1/ŬHR F]$dfvt@J$cx3Ѓ$EL+O]Sͣ8t#xELp(ٱsPiB@#ƁV1gK1kTicDH-;p Ro)'NRҾ=CH=qZ\Wm&ם#f$ M^}Bz,qG#q2y)f]E6N'"31! i؁CA!BJ9^X$]@DRnLIh!(&eWcb[ PXV5|? rLcQ/<:cΘbd=q.(P0f$Ia|zt,E 5"aOgϡt^z YOyBV)f]?1gK1z~U/N4h&CpIr9s֥.vV:f[-=1"N\l*_Q@WTP18}txu}ڄsƼWkD6#džVlX|@FАm Vs'&u  K7WNb[6םu^stlg-k2yQf @WpmFXf61;?Ms رZK TZ(ȚQac'u^MKLÐG_uݿSƜ1/ʬ1tHȚY,XDLq.I7IWLГJ@wʁ@7w/?44t9)Ag+eq1g̋J@tց\‘$SHXä́K^i hNffJňG>`cVƜ1/*<˾9qIV@Fֹ fbDM>{mek6BXpK*"&}1X6<Ri%  +{Ӟ<X5j}{8tƜ1/A{_ _$KRc־^BらL7D"A.PMMʯe@CsZ/v'ԓ*'6E`!wCsHBU |X,拊T}>_3?B-¬B]|0gv^9I__bp.O6? 4ca$V@-O+EPg1% iyD@0gv^YW-vSW]=MB+Hy b2sC2{~2g\Ԉ#+,Tdzqc?_ً̙5fָ Twyd._.5iC;;6պS9Ok5) K3'&m7eDN]" '^x9oU's/~]nyU\}{z)=|?}4%Wqɯ2Bu%y_mӥRε.2Cy][VKVbԼ/:?𽧽x9G;ƯkP \D]iv3gZ* bmo}[` @{0l;m\*޽?Pw{)*Jd";}yw?jF.t==jbvDW'Z͎fV,VOw>+e6h9+sNtwu NO6q,=yϱǤKJ~)"׎cPsldff2\~Yd ~Ͱ*H>U^׺.@]:x)2S|#^DAѢux=iSzμguY0uꊶsA=}WLO-3` -AKAt^fɎO5 ] i¼o]vUVP@SGA|ouEybtXԪRϷۗc :*P)/Z}xt T5w޻ZYeMW^'ȦknfK7cSN}n[V\"n9_^4 y\.ݲóugg]{[7zSӭiԺj]]gNN|/7 -:"0唧=, ~BP D<@5;?jVq.FBPB FyK,jǧvik\yfzN&gvP4o%tIENDB`gav-0.9.1/themes/fabeach/plmr.png000066400000000000000000000117651423175241600166330ustar00rootroot00000000000000PNG  IHDR4;N"gbKGD-? pHYs  d_tIME 6IDATx{u9ofk_^v/3})k>ՠlԄMhWm㧀߽pWaLgqְ1l4%C5mشaLzxϙsN޷oƚWW*ۢ88ѬFw[lr߻[O-`  !(ABH WUt} 7oڴxșsΜ9v]U9X.%#5M4QӅ&tQuMʆ 'xǪWDᡳ#Q5 J N7fn-g`<o޴#txxث9o~,E/vIh"mqXcӬc(qz떭_ʗǽqb87ȕWcfcz4^;N02;fv8p["+ï\}5/RryZf׭p*yM‰Z1Nkgb6]tfH1X}c7lذy摑&|׬Y344h4FV@ܗ98q;,X ?9a4k9K 0b0TJyJySJ AH ,B ]T}}n8z(Juww3q$zixVe#K*`f& B@(31pt0$q@*)J %$ 2 ? Co[oM|_ߵz7X7t˵QEQE Rn[  #P=rxKbDIǑ1)@(P +P_۰q]Z-l6###W\qEZjf.|kYNjE tXID铷c7nL 32K .q Jғ !R "D!Q ,m{o馁ʂg]I)տ8oR{8D\P1% Kڔ|$=g5 Q(hPss gΙ, )Pn$aQo$$زl8P~=>w|p@/@@fw^Y^vҏ{x2lN,Iֺl)ȲK7ܖ4[W؟3c0:P=XØPR0jLJ 4DW%ͦ/Y(v k!xN[$qDEIGu&+kZp̌E׬7̙si%DB68H aBdbmu$ ʖ6tK.U=@&Cq=#|߱s̶͝Uj2lA @fKS#yryZf(]It%q3jN5a#Ic 1 $IBP$_/_8OPQDD Ӎ)]g|8 ;-[.-AEGz Μ3O, 焍ĠHHqh!HRt Ee:Y '%J.;r 8Ҋ0H!An2H+Dq9 yѮjӆMբzQm4Sͩ(:$|$鑒$~(xI@H αM!!sm9` "+C@kryZf7. XZ:%tYvLDX UY'VKtC9Y DHY0d#E9s(t>1C@<̍H@@*69s< 3ǣDL%V&j0ұW(W+~b)P(cLq,XֺtsYlt#.! ;wDu]el!@" JBΜ3|8k9xY4$BB!|YP1$H#Ӎ(Q:fc`a١`5g3eU46}'1sYD:hIFE@ >PΜ3Џ>}0 L\bg$JR2ȚE^,c:QkՉhm&8cZg]B{[ݝEqHΜ3Lܿu3հa8CcZEOX--ƜXviwlFlF0#&IL1kAp!&ZuG pΜv?"!ޅpr朹YŽu_h"$Iƚ X.?lYXpv&IlDDZI"'F:OS(mxVmclXz9s|4R,8AAfcj5ƙìl@"_is9eƣy߾°I֤)Z;6κvY6]ʲ+λsx?ߖ[QRcm XcvƤ3Rm)}}!8,X9g~3πC9}[}t3e{܉[҅Mǭ,nn'[9KdZwq5tVg ZVRy% Y.]Գ9p.f/,`Tڙ%ʐk9]vr6]ED""$$L8 -/xhgfx d~7y&m+(ҵul}6gոBBkj:jĩD2d$̹<3OT{m}"kC}RqC$"$IB){~+ !<7==23g )O$Ĝ0v>3Nu埖L@A2~^6vdpH)i.$B {ƚzp~,|;ۡT-fc=sǜ۹y|˗&~ @4:S־SX⛸ܿ{fb(-ial!R|l9̳Щ[{}p0MHd!'R_* @GU?gX]o/䧯""#{qHj!KRPā3v,:4 "CuCR^j[Y*)RT)rI`]V=HAR ZI$+,G?0۹CЩ}G/u F*i`eٜ-}uJ>yi.'H}MC *f3}2ٵl%I"RzWJrM̤ć̐l/x^V.6tR jX g_X whs? k- ;_swD65:Q97N7Ls{ۇZw;9*(#>Osyiu;tۿ͆;V iqK T}nݺ4'lo^x'>=>zIDQtjhi.s_wYH;DPAuB>N;D߾nO{,I۴{wf}tZR4]RRpȵfzMco?ES/o^=+ɬk?YVe̓kg>=||LEl_Cr=xvuֶ_gz !g4p6,)LBtfd̶-[_{6o[{㇒%Ԧ஍w 꾤xqhYE?;zjUOVysosv6TX"^]7e=1Z܅g?dm@m =K]Vtc3Ω Έgݡ㒽b#/!@Dgr_m}g}8e}(Pr`2/Z y/y xd;U gsm|lZg@;J}9R=r?Nvv}̓V:R=|2 snJs2#T~( O<]/&$K߹ ^1IENDB`gav-0.9.1/themes/inverted/000077500000000000000000000000001423175241600154105ustar00rootroot00000000000000gav-0.9.1/themes/inverted/Font.png000066400000000000000000000032421423175241600170250ustar00rootroot00000000000000PNG  IHDR6gAMA abKGD pHYs  ~tIME "uIDATxK: a'uK]&[UlH7|XC___rz{m ?l܍ƁjE_i,^ֳ{g?jWa[_5ۯڿo֟zT{inTW}jT ?ڎqy>\U{]R+OUӟ[늠0vlQyFvzmw՟U'zVǿ*r|Tt>zV?jʫU)[uT_ԬZ7ʟ޾nuF~V}=]Ucv"=eR^?wڳU^[g e_mEo'#wӳϟק 9uJo|z|Fx#w}LVv[vGRg#ogݬuT|}=TYLdh=3UGagw׈ֿwzw;9/{N^?Ok^?}}}o\[Ǐ 9&(z`/6OUWGY U$jT^af`e#o]4rvGy뫊mjz=]U5ߝqoh}3qtj`k_ZPS^_m,W)ʐ辕-k}n+}9`_G:c0[>{e;Af}rώ/2F 72g|]qnOwhZuSD3֛^1׽kF{;YODy9=OՓzV}UWe:]@Ut}_f~j=/VvǟU>~mou=euh_5o۾U;Oc3{^=/aW5GZʩ{SΟU^}TCZ>-ǝ g7ڝ gb}ogPe vԌStv?jF@ԊMIENDB`gav-0.9.1/themes/inverted/FontInv.png000066400000000000000000000032421423175241600175020ustar00rootroot00000000000000PNG  IHDR6gAMA abKGD pHYs  d_tIME ,[IDATxK8 $ՋK.Ӄ.U4@$|XCK~^rz{m Yg6FUjۏj[zme=~g峟{c}ʭ^_yۯׇzW߷̿lUKY=QqPj4]t}\F>}5*zpzϲ8㭧k\vW}nc mQU4{r~'Vߺ"h']19߮muv^y]-ogr*]?_ϳھ{UGV]G#պ5k|M=o[Ϫj}̮[d |?A*}~gY{V}#~ܺ?0 ];]?Wun4rz6"!V#N[Oo=c}vH/uDoaߝɪr{noHl㬛5?9~YOׯOAD㽎*?S~>V9|zz}hw~X߿C=({4WU%zxc2O'loD\a}u|| QERKy*՝vjV6u I.jw$HvqޮF:UUYָf7sGf 5uyrUr [oߧߗv?ݬxd˨3QQo3{)dX-w{"ad@{#sOgFy뉦Q:|>NԑUz2՟y@?}PNjwD#HGՙ ]j֩nΫvq8?v#㺱k*s5ZV/o%~dEYe3FW|v#a oY=QEU=9At{~y-vEDG׿z>Ɵ*mw-]xJ&ğ-j?QEF2vLSN-)z}^u3U"{9?o/-7;d*۷f̝k_f[uV3xrQIENDB`gav-0.9.1/themes/inverted/background.png000066400000000000000000000252031423175241600202370ustar00rootroot00000000000000PNG  IHDRFrgAMA abKGD pHYs  d_tIME 8kq IDATxݏ$y9Uo3/I 9A mFb0"2 HL 6,Y&%rIQ Nb6blDzB:/=]w~Wm>T xX|UUVGn4-KfYu]Kiu/z~8\._yh4} ߟڪ1o|EQ޸q×qFYUUrοRzz˲,bXYEJKUUu.c9_eꫯ# /\>]%pzz*t163b<̏~xc<::oaxlf)tX,O,b4FQo¾ZFQg._<_וe9t`:u}ڵs,||ײ,?/ed2}l6mF.X~6uX,bu]EqTU*TiY~c1yku=q]מ(—G}'vv?BX,EQjL&:N~{}K_9w^}ՉWr9WU;b5?圽\V^x1}^xqaPu'u+mmReg>+W|_f9g ?99㧋'}͛}lh?`yZ+!zG}Eyu=rt<~,KOS-V^?7w^Esn:gdz[/ ?2P.ڿsppۡ着ArL&ė}/)M&/ /+}1/k}U{ѾLg:sx\Utڮs֭~Q{٧:Po6I|Y{\jfɉ,txxK/?U9K^_xXޞ?W˲<991>|ooқoY݋/jۯ|+{{{!].~yKy?|dxTxɉc\,W\|'VcO猽 ]&),ܹ㧁s1O!Eq||,ryppcb~׮]oy!+Nh{뾒_wKN>B u%b޽{^z^\~ooO6M>Ţ[X,NNN|XG˲_X,~i~NSEmÇ}DTU%iZyafׯ_lGiS=92oHz՜l+(~ڵk!t~VZGWg}^rʧ>)I>#ST;z뭺_|EIַVW*_7۷}-kg^K\?KCg.Coܸsy{\VUP}=[,\@$?~Ç}u$*`?S?s`Kׯ`[6Py{?UUdҮt:K̶hi>g>|>/<6|]:yI%\|{8 oyt: ZEl6v&?jG}'Fd2i|M6iq~O^.g˲y_ᓰڋ$>>\B~h;oˇONNa+SJ^b1|}@FCŏHb퐻6Gx;[[OxuNj [}NIe we3\޿,>EOJKp ]>=j2}ZݗRgCFk.M1)]0rAHm#iZMv1\d"TGGG^9( #{=C>Bv6}/$"$EZ; 'O\-9Iqv;xaB_:$>4UUy/?׎'''}6=K^*aI~@~6NG|?)U+yяOEoyއ} k+E+?gU1wyۛp>*<|Go߾}Gxhe<;[oBsU׿uU {lUR_k?\xty}>8s/}竪7qxx}<?s'''7n8==vZ]_җ|eּza{t|NgOQO-[ӟ[^xᅺ}!+rzz#Ksw޽zoRzڂݻ/9_~Oz}xYۇ"0WJKDT3;D;M+EIu] t"GGG^P޻w 睪9}E>y2{z9NOOO}G+髴WUh4:o 6?5{a3t?q$895SOݼys>= ILoOd6ݹsǫ{_T_x㣵mߎx{.xw7#'? oo%gDODEq]3zW&ǿ9Ǿyއ}.uvHwX,[׵sv~ܔr:җ٬N$}Oo~OǞ^OwyGɉY1u]s[od29<UU=s k>X3˲W/ڹwRW\999??NyLoLrooo\=ug^B+-&htUUjJ䩧oaf^|b|Ν;>ko\NS_z~~dřK>NEʲ<<fqX۷}q4MSxԯzkK?r/l2Þ|>G{FN+yhnW⧴h; O&1Ov۷=};ZׂxH.X#ig2{!3<|ӅEQ8S;gе_w^|}ݜ*xEVylޚǞv]ɧ xڋSTBW^{?fξ~hϫSwsvUhQsu;ןmZwn|f}ViWq7Osn^3˂RTdV0 j0A ~QRl`D蜛Ky$eH GUI+=0C2&U :6YKSN>^c4d糡C TtSd0#~UI)Ȥ`[beŠ"̒ԢVșg`{@_YJ])RYe*+RZOʙ"0YYQ,'Bʵr(mAERr{*]2'Gd!raU86TJ.Rڏ*k٩y]ˮW"R%eUTILe-)-Ng~?آ?|TmEֳrP6I!EIODQ<T8AmDwj1 l%,~;Tt))d-ueug^_y?_݃?_Iz_Kۉ$E)+JAJi7hgO#dkxB0emcR<*SO~{?1\YNX@oxw#5wV,eEr4:-jQ(]:l%*`7L:4)MrYIέo/<"^G|9mR*˼LY 9@@DSrYbPWӟݏV?7403{5\"X꼊!D+B`QLE)CѵNj+W~g>e(09dR( EW9!-3~pȵšRFTz>ɟgv`9``kQ}bRR")*͡GUU-sF/``{QɒTHA2)T**ݚۿûo~}o_*q l->@dܶE MB^D+(V^ۊ AGII:Vk?w{hWS*4`7.$ϲ( *b-% ! l-SiT@49W{n]yo}1cmŧ I1hN,(W9+ͨޠ00$T@o*`7 ^G  03 xEnz{*GnC3 A  z~ppP,pM?``wQ{9" ^O 0  CB !  00 z~0PA?``@ޠ00$>A?``H>00T@>@ *`G  ߅RE=C?``}B?``0ޠ00$T@o*`7 ^G  03 B ! CB ~z~PP=B?``8`T()+4'!!OT JJCw['BP5ZK?``0KP̚KIeLA fJ!%b00$_* KV0+efldYe)j8t00$T['3e(%7؅(MA?``HM3K.إ8H볻v[L:E!ߠS,?BMTIרD%I9b ƣ00 TW=QJiwmן߃ 6;"}w !y$iA$STԭ( 6r7.1qBs_00Td)<00 |zCA 붸C?``(;T(/Å~p o-`ӟޘ .*`NLO?,O/'ȂI?``0S~f~ Vu7y c~E mf$~.#?~p=o` 0z'HC]~PA?``H8|z~P}B?``0;§CAXr΅00>ߙ{*`m9\00 |z6Wk  CB !z~z~p@=C?``00 T@oޠ00$T@ *`? KdR!*>OIɸ{E7vK䃧e>zjBC~P0$˒TrA 9Y;X~F?``wA)!LIƏG?```\҃ɺtd*%a{ks `7 W@o*`7 ^G  03 x BT(u1RkJz΢g ;-HW$E)6B*]gy~`PLl IDAT4E{[ 3:#!w\0 b J_B\p x[^nYf1JAa$(F?``88| )geb|snpM?]1]zFgRPx(*毥TVeِگO6?G?,* 4)\IbR> 6U)JZRIKeBq6!wQ.F?mZ{*[#Y\GORRPZw ޠnkM&\O!*fY@i[eV%)*![wvn  F> N. ZX2$YQe\/X]HK`jIT* w[*HɋWBP9o,V]Gű J\JVJBx{0葶R{~;l=;$%.e~?5/l-R8*WRT9NNf13,Z QZRP^5mT椓R2Ra,U AqV!92g0oHmM~Uop AZ8]`? T@oB  JV~# 3B tݪ[vR* ݿoxhQ=C?S)%:Ftb9 ;dE)JYMOm$HZwYW0u?`?`lAdAd]RJYv;Ű,IǨޠpk=[} VEŬU ⊥> ޠpLJύ,uoV,xVMatz~*Yt I΄)i)YXY^Jz~ Q>*z'ܩmlIu"q[v=>A?.%i$+L-?.9*esG=C?Xszph[jY!)4CA?.e_IjoG)PV7A?H浰wTϻ.=m3IIVHE-IK)[B*(j3b*d言>pr\y6XF% esp eg(ʤ9J+ U:  JRrt:mO[d21C7ힷNqFR:FkO~s:oIwr^rzg>O~e o9<Ճ^`M|#[/|:zd26 Nt4m[#oE$cl61Ɯ DDM1#JwEGY4P?j_f^l΋* N3k^B^üz,7xfֶh4*9FU]_`ywI&y~x^ömWWWUu:=B{_T~ݾܼV޹ 1J`&'҅)v;t*QGfel6O3 K5۹d2 !|#g>sԩW++++3?3f>_dyFNtsmJm8_syC,/$/6?E֏rpO+_[?y'O;;;{{{%Hm=VFr='9Ę7}{W^O>3Op8/9;~`0EdG Cǎk͛mv0TUOԔ-PVUU4)as1U^V?䁺\•2sWկ}kyp86M_Og?ٓ'O1\sEկˬm۝>='O !y3o2̱cǚn6 ۏ~g~RpW}ĩ9Tw*dC|yty: y;tQ9G?{ĉ/_׿v?K_z^xʕ+$ݼWʯSO=5Qd2ַ?O=sλ? MӔ*UNZ\,#g HFc{1h^TU2Lrat:mfee%a~j^B1%FFQ).G1noo~%| .*h4* ?,T|,Z)}MpC庈~E^su.M+|w_`7A>F y'rw9.Kf͟{yDrSˬ)dee󉲕|Rd`p??8R*=\) ׯ_??ZO>Oomm}[?22_)M/0O4E;{dQÔχn~j]?Ox<~O$'\⢪{{{86pu@:G~L&%c׮]O3 #Epލjsi͛7Uk龡 Xt:;zhIeᇾrR*]n?etv4;w.O)QetS\NNyd U;i̹;,*msh\#Y.M)Ҥ}|cE;U?zp8\bJ5ٓ%gߣyQeMA,{|y90J+^ϧtru"r\ϟ2\71mܾ ;.i[sƝ;wPX8J%|#ׄ#9L߻xby@%("^۶o#GAOOe W/}K_RyZj.=~veQe$u:J'"0Ē~h;VKAK9n1~C; JEg1CSbk0 _*(nw-%$ R /Rֳ{5h^տ'LUs<]__߾byy9CM1~'TẮK72ߝC۷L>6.G>|@yMYL#޷wDp~,KWDrg]WJE yȑ#"Rr38GQ^EMV+,XF2Gy*]X.SHFωGXcRh4Lz뭕&t-Vٛ>1|Wu1@("9j"]~?qݢ՘.')BLIy$yo%j ѣ53e<,){TY\o]|TKq^YYw^Ve,DZwEpޥC.Ǭr| /붥,%'?ɝz=!r<\~n"GƔh4:vX요A%OoF)0P_~ym?ݜ`ktʼ\9,{~>2s*wXߔf>T ;Wy&_ySK/R1Y]]=qoowwwŋ\de0_׾կEÉ͛7뺮zmmm:~jᅴy7{yGYGW !ղ{g̷[Tޯnmm~u/JK/f|$PЇ>oͿ3i/e:>3˿wwyז4N0Ox[ow""j<-s?s)+WqFǏHW^۵k)"e*}~Ep޽2,]u6-3uޫOY!GC;TK7>Be5˃9g]Xnww7*ɹvww^h~]Z6 tuzι3^ϫ_o&9."yc,%!_ʥߩ;Y0ow=`pћ7onllTU :2rww7?\%S巸i7oSMeUˀqyy񝦴-̟.zS AuKBFR[UƮѤtmCUUyG`mmi2o8ږb|ɯ4G\:|s;uT0 FU/2)rw'N X k+./} .OOoZλe2|_+w/#y^uS //mwꮚT_xBΝ{g? |st|,CedwcǎYWF_BwiaNƹ xN,s{V!mwѶm|+_FxG.'uo~_-릗˦'}g~~)o\J .}lr#GVUe{hp"9k yMyQ;y䍯]w3AвL3+O~i)JKQWi-yykH/.KWȑ7o v\Z쓡7?]4'{u]4lS9rTH74iW\^z _TU~ˈrx|ȑ2 y*BWW \ž|pN#(N){Z@A,=XU?tϽ|5bx[ͳ p_?JP\\Nm sl vU ׻+֓o?_BOƓP!?x+#[ydsvnR]ՏKAN"ۧ;қVxE^[FgsGQD Xy~֫ʇ "R27/k*sp|r\W._P7;U98]CzvS~ mZV9c.~"|7C+sEU&#`+rfA{w `;+Jׯ{W0+(,r]~RrǶ2=),~{lCw:0JC͠rEƿ/JaeeK1եmέau r{_ԏ}ApXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@pXw`@p@WP;\u ^nDQќ]C/I費X~@^Q5Qw*;^98`^B{TLEcT$#0\DL1r.wk?AC2.!xr;,;̅Rv}U\g]C/H1{$BvBp9r.bCg=wOi;,#;̅Qohi$s* 0'2ju3uS*aTDT$E^5yHeCp""uI<\l=]I5 &TX2w9{W"4")b61u5It.&jI%Kt .QDfē``>vSF%"]<0\|rI.IUId0G\*U:Ef"b"&``.JgҼK} *-UA$b.A<7qg 恻$Siev!J]ܽYA#YR$%i:R&ˇAE]\܂Q2D-O>U`q`ՊPF*!'[f1҃~I$;̇<s͋*\4HJ*x2x&}?TM8wM\y%Ap9]p\ALS/ړT)UYu` v6S5"+kr,p"{S7i˂s n]$%}l IDAT$:uFFiH8ڑ7~ΆS><F}_?d7`Y`nJRub#l0ELjVdVy|nq0 im@c Թ | :+L[=E$whq_嵭6.qs[kǪk+"A``>ܖԴw?V!D 7]z[GYՔVHwD_vtޅ3OxⱭco\v>VM482D072J*CƘGܥ57qUOFwX>w{.9w[2!UEUU敤8ʰ'NY^]zecՍNnn?wfFMC˄wLNA,|{eP렎ĦN[7݃;SS`0sDT]=͂{]XRf]~}l_8'7]\].u᭣wjJ+*q;,j܁U Ol1wI"H*}UbAUܣJ b4<4Zp`y0;=K ݅SYٌTqtGk^L7]8':oaդ*MS-Ks+Q*$=01<ƘGܥ57qUOFwX>w{rQhq_嵭6.]Ō %IT&:Sg&+;/ؼw?]ONXtt9sۤTsL 1jPW(6RkY2~a愉hCow[2!UEUU敤8ʰ'NY^]zecՍNnn?wfFMC˄wLNA,|{eP렎ĦN[7݃;SS`0sDT]=͂{]XRf]~}l_8'7]\].u᭣wjJ+*q;,;դ@*1ĠjQ% 1hcRnf{-,0g\H.f\ե2p;/^`q|™O<ֱ7.~;] &UijX"w]Ty]%bu!UqAc#Қ';,;̇=-W5 U O^^]^ۺyi#wϪUbqeBp&D*HW*c"֨OkA=TCk$Q̢ 1P$KEDVƺ_Htjv^zͪ>zG׷m|noq$R˄st%yuUW$ILL,\rX*wn.U̸]T+Mh^8ufrKo^x{籽u$ %tۤTsL 1jPW(6RkY2'a愉.D< 1 ފ4u=}ׇ7/=SZ۸xegw[2!UEUU敤8ʰ'NY^]zecՍNnn?wfFMC˄wLNA,|{eP렎ĦN[7݃;SS`0sDT]=͂{]XRf]~}l_8'7]\].u᭣wjJ+*q;,;[HR!}_i&El6*1ĠjQ% 1hcRnf{-,2 EUē =  wu̇4.6n߻pfO]~"{mno_t g|#6.^UTWD"#c>WƀI)q[.a..Z%!(U4UTR;,;]h{{p)#)_U/RUT%[e^I }ԙյW66_x#{{gi414*>L_Ev}QHJyVt44b*&^E:&%G.%Cp\#_j/q&꩛ bA )V u3K.>jN/zvV-& Ը2!.ީ(כ}ڋǼ T}EA]:YjIیR tf=7XkX//[g}uUE]>[sխq[7:z~Ϊ*9,;)Λ(=>j.P!Us*1hDrH7k`HRI2Rp%©v/pW|8NÑxk g֟>c[޸t}2Tipe`Hn*#$SSLFE<쮒@1wiD\Uē-zw_Jv?0V9*7׫k[76/m\:yYUJ>LDDU Q`P EMF1@ ,;چ뭾"EDVƺ_Htjv^zͪ>zG׷m|noqfn, ;Ԟ vwϣ^0$IffbA-l`Ǹ./n%L]T+Mh^8ufrKo^x{籽u$ %Ap ]Q6)Uw(Ws+ji-ָ%s>X6wB`".A4xBLiEoں߾ΞĩGmm\3EFpp[R..Z%!(U4UTR;,;̇]-x*A*JRMeWmk'7;3HQIqe :^Ig9-|{eP렎ĦN[7݃SKwĻ9a" .Īb%P7tf©G>~n߻^ib, ;?ܳ]fUyjT}EA]:YjIیR tma` q[M~f1*"~تNn}k޺vV}5O8 @_٬ df7TbAܣJ b4<4Z4[`Y܁%6I}n]8qqW|8NÑxk g֟>c[޸t}2Tipe`܁+RdT*Ih !{cqLUE<}``>>4hIh4UJxōKNn9Velŭ;,;5 ݬTGRF}\h] X&b%"X:w.&b2JEK%VU݌oV}ӏ?}lvӍ}c&wX&w#%|ჽ1 ꪮ*IXP T0'B\]qY$WDGSp|}eu޼c{4IIK"!IҍʙbԠQb%Um"SdNdeÈ; ])]gbAikv{Pko^8{9qx"m[KM{hḄTZkZwWQI>|0Jw57eBq+Iq4aO:^~do &F% 507rփXW "1cnS1Q*ʠA5Mn.A=wra愉z"*XI3h/]:1pѧOy.ooZ=$P˄+U N+b".Dh& w=e6l7]DZ4փu0ԶW(3S`܁"A\4ge.bQ7]z[GYՔV ] 3MzYl6(k"JA뿅>;~}J 1{TAC&ژFY랺s3%ApHo5_?gڽn."8)lbѹн]]*8 G#K .Ym{ɰjR%BpHΏ ~A?C2J*CƘGܥ57qUOFwX>w{>rx\E$4*GW% Q`P EMF1@ ,;Vƺ_Htjv^zͪ>zG׷m|noq$R˄sԟp{n7u Jijn&B.,;̉q7W7 Y$WDGSp|}eu޼c{4IIK"!IҍʙbԠQb%Um"S #xR !32Dfa Coمڊ4u=}ׇ7/=SZ۸xegqz+nvrs34jDwX&wb8V>gU%$*bUA:jZ;m\ztu`S{7Nf"@ .Īb%P7tf©G>~n߻^ib/ڥʽܪQglَw[4փu0Զ $*3S`~AY9~!/\C\fZZ|?Y]봫s2CUEU O>7]\].u᭣wjJ+n,;pdD,9o5-?. ͕vվ}vC%T=Ġ!FmSGnֺ'[cݺZ'~唧L^\lVet6;N.bgϥv`+;/2?ǛnAuB=\H.⍋TqtGk^L7]8':oaդ*MS-9fbAU}6Xp""&n}8=αJZx"h+!c2gwh?Lw"U>zTIj.!UqAc#ҚEdqǢ"QļW(tU=fK.!FMrYWqq/Ou6 ][$jN|qٙ*&0V9*7׫k[76/m\:yov;IDATYUJ>Sχ=x5E yhr* .k5 m6ThERNF>ia`>ݚUQíKeLIpu5j(bm6Y$d0f=d%DQLԽ7C\Ѝ٫OvcQ$\D,>e:PQ%0o0\MmeDJVۻ8$ 'ެ"mʖlPlٖ k3BdED&dLe}bowM{d|&gUiW@ג_T6j ` 6b"·4l}}PLD=X7a&(ȅJYko|óO>;=ݔ9n!H@)ZEӦ~vX`Az_$cч??m` R7(mRp6bXxUS2,!e&.J-DPK;Fq"qP>eWZކ(8P*wjgjs8GfmXoN;5~|ux;;эO fk"ũr=g ?Z^kJ2Y ""Zƶ}MLr DmDG`(E}E~a^o:wi[ !6Vn_=x';Ѷ[CQw_ns؂ujw_GG{w[l靈\ ""Ӱ%nh'M -/0C2yr !yJkԦȢ$Ibw\Oǣh{}hkuf"O]Ddb|1uLea'?>{:[<}ÿgynK.q$ F$  bCph͞FZ6!B=`^~blPp׽ڷ~C,HwK F4XB}(/wՙFR c6T\%W7ZRp;X[=r ݗэ{{wV&#W6uv(v^P<ky7`53g$˂\)wiyza'@ƥɳf6s ,]BD;HFq1/8ɱ(9-g (Pp $"#0=!7O?='/YS W3,(@8<B  Rb,NX:rED&dmtbowI>kr3 ʪ+F ܢ_W`y A" Z6D $,5X[T ""CqDoP fci+<:zpg|vzv)s.ݖCwWhuN-qZSf6+`ٓ`mQ'2 ""ڦT\l,<%RFnta@D * 0\ַ}ֆ AC8:."2aNVZv]Ϛ??{|:or' M z d[Tk58Y:$͘è+WT ""Z'[rMLr DmDG`(E}'(CTGGn5q]]NE.4}- O76Vn_=x';Ѷ[CQw:@W9# ^3̐HSp6Cξc KCFYc&YA[u t*8 0LJo+=Ш<^>$#P.rED&"3{ H^RF;zF{tkqv|Ghy9h y:6w# "/?L Ѵ`K."2|g;_50YkfMNGDe.adڙ*ߏ˳<%S2Rq#HD]b/c1m:#br~㍳~@ #8 ·'׎d n(vX`@[Ju]0.Wn?t1gSzL'rEDa>,|^ X[=r ݗэ{{wV&#׽"+ p‘ D-(J]Dd,`X" CLNK&Ϛ,ρʲt  Hx%oImn~y_,ɕPpcˀDdDc3G?闿~|E?`~veqju~OJFcu (LȘek3 #&79Jb-;m\URF$X7jG;qQ˥."2>qYDZ\4KX{?<ӳMs鶄ERт@,^Y_,@+uʊr)LkR1ʙ) 2r@"JrM92 > en"K]Dd"1~SMIв;x͗~G7>>Y,nmI*8Ձ 0FvbSD.4min ,'Eё4JQw*+L3 @=c#WD]Dd>9nH56Vn_=x';Ѷ[CQwL L"fG1Ԗ2qjfr)LF @@agCȜ0kl$+UtA1w6PɕY@ RA/7}^qJChn];.Pph,L I8"{ISɣѭOڽ{/YD*}T߉ek ;.WH]Dd:jvqʸJfxD[vQHrEj17 exzٽNFH_LWFx?>mJ^vGt0tߗiFΜ3wWﶎ?:zދc*e%Jrɾ;Zص[m6s}K}Nl8%qBѿ7M]Dd Ⱦ`H,dHnR`|`DG`C=w.q^; }t}[* )Z9[yL +."21> N24"2߰=n}pώ>ߏ˳<%S2r`Z\<ġЬ~PZWq t}/:uB ""1 ɍf -.Pw:?;oUh}Gm{VRpjy-|ax܂u{n~tLJ{qvǰqNEDWjLNK&Ϛ,ρʲt  H"kG]DdjC9zp wh,rf7_to(gLnkB]DdB^[]Nw6gMnrFAYv[x-kE]Dd"|4†b] fci+<:zpg|vzv)s.ݖCk!""[zmS*5Z9<%sRFnta@D6GDD."2c;vTxN;5~|ux;;эO f@z$@DDf ""Zƶ}MLr DmDG`(E}EFf9D-K:\⼏{d8kͻfH`d2}sq׃o~|xάlmfcycxb߀b\4|o<k ` p u7R af `dN56k*U ܘN֟ڟ*63F1FLan "{vn)n=po,"̴.F3ɔE."2_O'Zw+*YSQnٵ Fq#}׏nE,rq&c {Ny6m{zz:Ƹu]WJEݻ[y9Kap)6 Vahh<ӽ! Cc`' `uo$T*|^ڹ\.؊ edȳ‚ml0M?ۇ,|Zt(vןu:+R*IסԖILϷ}]MFGX8ElU6ĄNd2b\21kyF^#jhhh4$_ p!t\yκ}f82PNz;N\#$Q &98?n4KX +IfԒۼ`? ڔAm:h5~xy*}fp3˼85]#2UώY{t3w[ݫQ^<M]Ûv?Zoxco34n+MIotwK)%MF!nnsy wey#ҰkXjEE[OGy?<~Flo0?-P3v{yƦH[N9o ;찓&%)٧{ uۯ xnX t@H(poYnl`azn \==sVn829>?䨟\FR|c3Aw9??ϿSNHA6*E.uWV{u Plc"oli7=gr)޿Tj HZjXK[w0DNj_<NqQ߼5C v_pp'Go@< Vk69u{!t\aD %JٜĶFX00ƫ}ۆ = ?8C^:gPp}d!YTk"4(\='>t]+[Ċ4IPpY >^+Q4l"AI%-\DBe[>~t32Xû{#^bt++\]wꖜ.px4܎F?z|)~kyR+p?>Z f4ZbgӮi9V::j߅rgsp:29]ILSp-a)qsf8\.egOAmF,<;Dtj{d;[vxvn )Ya3d] fQ 5;8wRj>N8eX/*NCvZ[-bn}ݽMއgϓ 6s 0*p;9KMRcc)N6z='v#c!騏*R* b4?ej06.bwY|@ݛ(| G=C^ov*(p&ćwtN}otM)i{=M!qoN $ӓ ޳Ye H>dfo9 fP5K~{-iV_cN#j8rNBHXTO` 2H)nSLG. ] Oȍ98׮$Nkr?eY *3ØAV)7c޽40x"`q|v8^UW\iX$ȧպ2I,ׇ]\ r}CbSUC.xù" K.j_^ ݓ?gSK[6 (GjUNk氀Fuֻڷ*[ikC$m ^]xv#@ ]jgN#_Wo ן*>W.5#:=p+ 8x(j LPcszb OA)>i|kA/vܽf[v:J'JUg^WE̢:hW/5W0wE &|"Uw]_uSk".>E%p-zbnrr+P'~Rq΅H$"Uay:\@^$k43^;fE+Sgt#MzZt>%ڍ?:w!A^2IENDB`gav-0.9.1/themes/inverted/plfl.png000066400000000000000000000016231423175241600170550ustar00rootroot00000000000000PNG  IHDR*y@gAMA abKGD pHYs  ~tIME $IDATxAn0 \ hCR4z9,mdkERm$x^ߟcΖ`:wXwWM1Oh}ܳ.5gN)RL}DKc+O_YmQg^MKpX&+o;S'wTq-钧禍c\:w!^u&)[qJOA==yZ?r,1‘u]՚ \'[ۛ)6*w%+JM%F:Wߕo:Չ&2S>,ϳ׃KXg֥wDr Ȓ$s dgհc~6d!+l' 7^U/V͎Q~9ulDa?S;zdnfRoSKsw2u\J6mXrdox؇6c.bldo6ԩO0㘆_1=LoD9"ZWj\77b̴vf b,1Y=u'F'7-;J{ &U79tHŢݒEj ڛMY"dfɱn蟅ysoȞǽٻjkdt3y)#NJ]Ng<̪gUɱ ]wnrց_'Ty<=Լ6r,1r, ?]ߵ戞ALSaMK 5,5IENDB`gav-0.9.1/themes/inverted/plfr.png000066400000000000000000000016231423175241600170630ustar00rootroot00000000000000PNG  IHDR*y@gAMA abKGD pHYs  ~tIME $IDATxAn0 \ hCR4z9,mdkERm$x^ߟcΖ`:wXwWM1Oh}ܳ.5gN)RL}DKc+O_YmQg^MKpX&+o;S'wTq-钧禍c\:w!^u&)[qJOA==yZ?r,1‘u]՚ \'[ۛ)6*w%+JM%F:Wߕo:Չ&2S>,ϳ׃KXg֥wDr Ȓ$s dgհc~6d!+l' 7^U/V͎Q~9ulDa?S;zdnfRoSKsw2u\J6mXrdox؇6c.bldo6ԩO0㘆_1=LoD9"ZWj\77b̴vf b,1Y=u'F'7-;J{ &U79tHŢݒEj ڛMY"dfɱn蟅ysoȞǽٻjkdt3y)#NJ]Ng<̪gUɱ ]wnrց_'Ty<=Լ6r,1r, ?]ߵ戞ALSaMK 5,5IENDB`gav-0.9.1/themes/inverted/plml.png000066400000000000000000000016231423175241600170640ustar00rootroot00000000000000PNG  IHDR*y@gAMA abKGD pHYs  ~tIME $IDATxAn0 \ hCR4z9,mdkERm$x^ߟcΖ`:wXwWM1Oh}ܳ.5gN)RL}DKc+O_YmQg^MKpX&+o;S'wTq-钧禍c\:w!^u&)[qJOA==yZ?r,1‘u]՚ \'[ۛ)6*w%+JM%F:Wߕo:Չ&2S>,ϳ׃KXg֥wDr Ȓ$s dgհc~6d!+l' 7^U/V͎Q~9ulDa?S;zdnfRoSKsw2u\J6mXrdox؇6c.bldo6ԩO0㘆_1=LoD9"ZWj\77b̴vf b,1Y=u'F'7-;J{ &U79tHŢݒEj ڛMY"dfɱn蟅ysoȞǽٻjkdt3y)#NJ]Ng<̪gUɱ ]wnrց_'Ty<=Լ6r,1r, ?]ߵ戞ALSaMK 5,5IENDB`gav-0.9.1/themes/inverted/plmr.png000066400000000000000000000016231423175241600170720ustar00rootroot00000000000000PNG  IHDR*y@gAMA abKGD pHYs  ~tIME $IDATxAn0 \ hCR4z9,mdkERm$x^ߟcΖ`:wXwWM1Oh}ܳ.5gN)RL}DKc+O_YmQg^MKpX&+o;S'wTq-钧禍c\:w!^u&)[qJOA==yZ?r,1‘u]՚ \'[ۛ)6*w%+JM%F:Wߕo:Չ&2S>,ϳ׃KXg֥wDr Ȓ$s dgհc~6d!+l' 7^U/V͎Q~9ulDa?S;zdnfRoSKsw2u\J6mXrdox؇6c.bldo6ԩO0㘆_1=LoD9"ZWj\77b̴vf b,1Y=u'F'7-;J{ &U79tHŢݒEj ڛMY"dfɱn蟅ysoȞǽٻjkdt3y)#NJ]Ng<̪gUɱ ]wnrց_'Ty<=Լ6r,1r, ?]ߵ戞ALSaMK 5,5IENDB`gav-0.9.1/themes/naive/000077500000000000000000000000001423175241600146725ustar00rootroot00000000000000gav-0.9.1/themes/naive/Font.png000066400000000000000000000431271423175241600163150ustar00rootroot00000000000000PNG  IHDR6bKGD pHYs  tIME IDATx}{xTg2I]naF)j}FkkgSRj ^v<ϯV]  A*T+5h B @23L&Lf2s#~9̙ɀ>droR & De+I "222?On:M")7??===0L(,,DWWf{'K.E(Je[lAܹ/Ç/z+pl6C$AחԚVbtttDQQ_ϯz>}:VVz)tMؽ{7} W綶6<#DA?SbXv-222Z\'|c"##&Ij㒙`0p\}hoo'1V+}YL2f/"V\[dee!bh yyyBXb~KRf%x<ϴ7lݧ!;;0x`nAejĈ#N9T HW3^WO'˲fze9bF ,''>/n>G ;Y'fyyyqi W~7Oł ;;;y(oAWWdYK/3g`4r-8v%OP @jУmu?{BJJJp㮻B~~>}z衸4 x71aL&Ȳ۷gQ~ɒ%{1~xdeeE>,]/9ϟW'==(f' `ǎ~Ng}Ro~ţozOII `۶m 믿O~ֆ4ȑ#[ocʔ)sq8pj.\ k4N' AEܩ~aҥ /毤 ˥ZGAi&l6,==Xz5>쳈KJJ裏W]uf_0N3eQFi깥F@Jޟs0(%] \vpYoJ*Vc4(hbF7^3:Z/xAJ (ͦ*1,XUU\CO}q>766bƍ "]GII k.̟?eee8wnK* ##p:ظq#VM~7C$|f⥗^R}+>{^{_Rc=/_215AK{KK ZZZ~zȲ&l6%᭄Q YQQQgy:;;>8^}aX"׺455aƍhii_uu5-[>DQNf7x#Μ9k Qyف@,nnnD[Tj?9 \^߂ |0fROOL6 x.YL& 6,<Ԃ?E$A$+T;G_z£`0)S`ҥ1Ve ` Ӊ'N`СjyqOII LJZ8u0:;; "0GQLr"‰'t:cv 0LAs拉Œonp\\X1iҤoPTTIti j9uL<wxԔ܉ł{. ( o&/If̘1£h`|'Obǎ@ `Z؏v 6oQUUU01|I=zHcnjO?ݨ7kc<n݊[g?3L{v`{//3==]WOc„ ƌ3`2`2p-BEEh {COO{x;:apyTVVt|$ ,sEW8p@ uaݺu\)SW_LݍǏf^X0N1wq@Ss|pBȲ6i 3g()=~xlݺY}!j=z!$_]]]\76l>~<eeenS .5JK"1͘7o=j4 .𧤤)`_EEEx)̘1*8Vwsd`ڴiĈ#gϞUJI!W= \Ÿ+pqT}(S0ʲLs$"ePիW$Iϊjj+--Jue$I"Iպfee֭ 1M4JJJLiiiwmm-ɲL(&IH$˲n{j%Qp8t9@ bx^jiiQգH3ɓ'ݻ)++Kqǎ$2="ARqq1ox>jݻdYRYCDD4w\f,TSSF$Q}}vQ__ݵN (ZN8nٲe1i<#>ÆeK[n+xh6<߯:JOOם3Z8h '""ݞx& Sb1T_AٳI qUWQgg'ɲLhժUer\$"a.Pς ngQff&hI_""IV{Y6l YN'?~Yx1ɲLmFDD{zz(c} UZ&F '")Se^{5Caqq1|>eY`ii)˔J<QWWW7Ag\TĦ&jjjv~ycB"/F ӓP]Z[[3Z2ztԁиq㈈+7x#/u>>yHUbK^/M]fHex2ž_[[ˉb49C~dY&Nvn(|r eQ$ۭ*`LE%OII gp8.Qm6dY<1&V> tС x( e ass3I (Һu"Ljٳg_4BG%" 6fד,|/^Ν;&+**@U5Inn.QQUjUԑ#GԘ!:;N B1s_AD (߼y3בj}{KRl5,--%"L2&N(J9ϓp8&þg{/B! BAFMDayy9R)1ͣۡ0ڬ.ݮ]<ʲIer8mgg'K.K5UV$I1s ghoܸpݘGy~B!""|ibiͦyu|y|N;@?jo2(//0rǽw$w 0UWWSAAnl6yuV5w:Nx<?I7VdY˗2lzR UV%/*,,wm۶%^ .2Z@TT(ބiK}JxbiދV^(c Q 1EW#cZ*/^}(2}}Eti+-rbN#ӫ/'N$zZw%%%rJ:}t/B>XADQ۲e63i޼y\ID'NHaL]^>KHu̙I&/zL&jjj5ڵDQ۷Qbii)X=Qr\17F]عV:&饗KsssDFjX]]MN3y$0PcCx"氖RѣG#G.zB&G1 6y4 @'N I---a$ITUU.nS{{N3b=\*<<&Zb*hD3ּZyRN]]] K"ufʖ@+ZV555$"Iy5kHejll$A護"Õ]ii)nr8Њ+>FKAÇ'\>DAhͪVǏ'B;IHEr:~4ia>ֹs&Nfo-B}}]]]U R߿iii7 §jR̜9ǎÆ ]O ;;l{^ ^>Aƍp8x<-zӧO}݇|X`= >>~.͉a7xtw}7f3;2X~=PPP:|>v9rW֌'B!\}Q\\ 7 Ý` ߏ^~E_H9r$~aMzzzL<ZBSSM@hDjITTWWhhnۍ篼 p8ٌC"tvtbϞ=Zk?bABeЂ~l<333c[rj5;y,Tr/SEZ8{,<$Iߎݻwk^H:1 `Æ 1crrrPWW~SlС8|p:1cdY6|8s"OFd=M&b"''?Ue9&f3yXDQ /#F`̙hllD^^f͚{궍S0l0#&ĉ0anGNSbڵp8Ȳs1p:0͸bYv??7/ܹsǏAz9FDN/4k^[[O>c˴^59r$=x`?~pZ-3fLB1E, ?a޽´i.d2aȐ!Łj 4`0lO;AT˱lXj0yde: RPVVZr-X` ***܌?ϚwJTVVF<?)jkkqwO?EKK zvOc֬7x#B~a|x7uDzׯGVq}T q=~vrê峻Quu5Ny-ED0LHOOɓ`C|,A0rH<81xT̙3q!2};qD{ڵï~+U?& P-`߾}:tǎnfUljjرc e1_@ʤxQ_=|ww1}^ss!?ƹIPz{{ &F $|aƝKfzTYYyK"ܦ%h2<}|F4֮]K ɲL˖-S>6Ҿ\R$bZZn԰*++#E&rQRRȲ1>-_nWU ܚè}(rkBQk\.Kń\ @`>䓤,ouƏ$˹V"ӦMt:runit?b1$X̫diaF\twwS(q[jT Ezv!Iٳk-+NQ@p mȑ0tq |rYnh!s@.\.9N2͚yDk3YOuvv5Nz{{i߾}jvS8Ӎ7ިYg"Ԁt:p8h˖-j*Z~=ɲL~axy…OYiw: ̊\6l9hW,HKKK+J=KE.+ƚ ]%_ً^-ڎYBUWWGaZt{ѵ\e٣9~̵b0l;?U8&dV\,^hZ#4]P>ccwB!>g ===It_aVv |ųaR1,--P(D>0 ZHUUU$r|7oLDWbO?iDF(EȽN[~ڻy2dxw(qܹt9rΞ=b2OcD?х s$"￟ַBVyL6֬YC}}}?-ZH IDATSww7ߟ.- h=J<176̙C---) GVlKkcT!}qq1Y,Br@-|@,S}}]'gN7}jsի^^=oooYģK#ڔl QS>;YRbhX_lK>+u|w:t̤ܪӧ# IEA]\<OBO\$r\I_>ŕ+W&|&f77tR{{;ڵ+brrr8bɓ'ppdLXL /\@FAe 2DŽ?1>haY\s<DA#Q❞b a'NFQ@ BD/ O`0`Q /;7DFvTO|r:qa(Ο?p`\& BT\\li""ڷleqΝKDą(!/Iaa!wwވwlOћ&3)1v >9Yh׊j322RaLd։>N'֒ 1̭{R8\ &Nj탒$ѻロ5c1!,tY.C=[ B\y(Y'ON8VD1###"&`2E#¨|R>)S4ZY?===IE:~<;fHg͚EVrZ@eXWW?0v̈p-5l1GFuZq28ɪE^l}B@A#P-dFBp L.%y bs6Zlo$|I!C` BQ5d}. O~ez)u%w̙3DDfz[H)I) /}=5dDegDFm"Sj7rcknncnDMY-S?S|cAC9wWRAA]{F"bȬy PGGjOvGkhdq~?ed _rrr@(oضO8\z&]F@F1zShK2[U8uVZ>deeA烈҂,deeg5Tm۶E }*|e㏱h"455bjb…q}I`Ȑ!X`֮]cΝq}Bw!b%l۶ #F1i$dee! I1j( <难;::p7u]" <ذ/܋(++o~> ?8~ߢ$|Z}Z%I2gh?֖t,1b zj1c8|0222oGʕ+9Ƈ~P}dY~[od2_U7o^L%Y?8w_BܰaV+yB!B!x<+A;Ѹ :::0ydSrł> UUUXbVt9|G0HOOGaaaBz!Cm޼f]]]DNN̙cb˖-mg)E1cF^{GɄǚuP Y#&Ma6b dffbZkZP(@ 3gNs "b 7.{ ++ .Kkn0un,_iii~7 &pXdzEJ ^(//菅l޼@;-.?=[7сP({ EEE \,[ Egg' h"ta2 &Lcǎ駟VhJ5ѰrJ\}BOOOn>cǎM8þ}tc|\uU|-)Am]?sV+j[.!wm6 ^|"/yӃ!C@xxgΜ1T~3@NNmۖP_>E~~>~N|rnDK,Dp,ԯ*昸TέjLa #2ر#[=2FR(Ԑ紐>(\> 6 20z4hian&gXQQA$Fᒒg,ŋlhZ$ŵ`.'RFCNJ4 |Gk`1ڪ-cn:NhʼnB5:^}6ڲBiIGs~%=xt]M6-,ʾv%E#3L|sN/,˴d={hҥYhcƌ1?oc̽Qw\FFiG$를< BmǕ.7J覛nJxEǵ0v=%Ԑ܋dYYf]\.wFEMVUׂTuhĉ$ɓW^ѥ*++5?5Xjf3gyժUTUU>ݙ AVk#1# EbU7|CFsXVEQvZnx,kŃ{E,n,tСx{jYQE#5Kv<|p;kHFgVkS5֬'j]v!tZ/ō{QEnEG0 w?R B|V l- <_'YƍJoٸ{V Z^d`<׫9O<$Pjꕪ|Y jURa{{{/jhh3XPP rz奾^7O8͒1 P$2%I}y2h$,\jz@fODی1gΜ~0^$I+V\ Z)r C .]JDDoրp N4)].^f'jKo⎋10{9pB x={6\rE 8!ΘJW PsssB01.yU; VƌPz0E;:thBj] d2ecz?^̅ˀƸL#Fҽ0&=![ZZJdX(++K5X\&z%2rO . ͂_;jii-4V-2۷O3$;Y~iy 3CWҮ%`8:̯Pc\j_f9E3;A4b)a&c>u_'.\ Y BAF*={6-Q:\ EQ:}]"Jo}kk+kA>㘾Wô4அؼWw&bJ//"ID/b̾3. +uQYYp}<R`=xZVx:V+;vn79""3gkOO輩SһKn^ HΘ!IKx~h6mK)71IM?&~׉gN/ZS*ɲfsQSS X QY|{fw-FiDQO>D{v_fsa<`0iP(Dp8n qƩҬ'E1BɃ!S^V^M˗/""M6  }qθ6lX\?W]]]ZQDGJL$Ia@.c~+Wj&tydn7K zXRb0\ d֦ǎJ/2544jF#4cނ jZ ,&V+H5LAco)owt>RѢd8vVelllTkNZd e %͜dcx7+vLpX5v*S*Kb14jb:\̺\.XQQAN@L&SD)R" .w=ZT^^NA ,)3kI\DpqٲeC{Y E{2Fھ=&MDN\ ֎6"ctT1 Bx}XYYI P{/?4")S sܸquٱcGSAN"" BrAe9sn۷*'QpBB|,z_(ƋgTdgξѥ6,Gܣwa hҰ[I9Zi(<P":!m޸q#iASMM!!%<$b3P*?mg!YA@7[znǀ/K[o5 {pB̚5 /"uCBNN̯s˅ op8l6+c]w܁ hԶZ8{,-ZM+//dz>k_뮄666I,XV`Ȑ!5k^u3ͺӑa(nQkWgE 8z(Əw}x ҂Bs7;wDoo/iڊ1clĉ8r_E̟?/Gj5 cǎULxRTVVv(2c<1cƀ>x^z1wy[o#3999 "y xgPPPhmmﲲT! . 9ǁ!p`ǪP;v1cp 7`̙{n/~ ꫪZhiiX1yQQĜ#Æ "??p "L&St:pܹs11OAq8Ťe4ε^>Պ뮻.nܽ>z+pHKK]wݕM 2DQDaan5HKKCyy9y6/;777nѣG qM7qz l6{ "۷wuN' 7Xh@Š rRl6l.\[_lذaqϠ4N_7zhooǰa[:TIDAT٩ছnҭK<4h3220e߰>yyy*O, f͚9r$x<tŘA%I6kgBeeex'贴47ܹsuJ՝\ekxG n$A$n >\fժ޽{qbСADk6n2,ZDQ)--R2JKKK/awk8?%lڴ ǎCUUU}F¹s֞ >gxFF0!IR(..Ɔ 0fHߏ~hnn֝vEEE^F @E=z7J]|^bfffz0dƼy ߝYw5 "ȲiӦi׃7xC V/^;So4FH$Y0H֥?:ZVzi KS{ $*/R/ ^\ZTYYL,UXWW7( + !ʅЯItr:1(/3}WVVM@%̵I2W p\%%%e u:Р"(;$~__>2jT㫊ۛhd֬%%%_:y`7 Fh&jT饇6[MY`٨v**] ^,Zb ZdIʵ7[(0+/QyaEr7H_atPOn`0>V5by°X,t)ոLL]]] T-yPoN2$Ub Ro2_5=zABP>ݸsom+5k=iؾpYJKKsaŊ\>==C 錰keUU aĉa2p5פăE=(| @ɅB_:>,M@TЗ_z 4i\|>rkp8 Y|АEn&0:IENDB`gav-0.9.1/themes/naive/FontInv.png000066400000000000000000000447711423175241600170000ustar00rootroot00000000000000PNG  IHDR6bKGD pHYs  tIME_ IDATx}{xgfM6d7 ! D!& Z*A_ BZ+DBZ-Gk-㥶Ъ \r#nvqvwfv6 -23wΜ{+AD!4$`0 ꫯbhmm Cr[ZZ"BSSU󈏏_Cz!Lޣ æ&$$$h>ٌiӦGE^^yqϞ=#F.A$@GG,K Tn'N_Ww}C0hРdn:|g2e Z%OH 's+`„ Eǃ^{ \s 22ڲe +#** ]]]0d.Jy?Յpówq0/D}}=>,n χe˖DS5y:;;]Ekk+L&x>>Zz{ߏvXV29s6 ~(M5Ǒڒ;x 7V .[uEQ5fBŀ~|{{;;w111aez`0.>HV`WЀ\7LӟE1D bÆ ?_°axׁuyP AJ`xE[EɄ۷/ }@77ox<L:{AEtMXv+V@UUۇ΀~cXCG;v S`0s`x 7NjpMkk+bcc(۷f̘B~~>^}Uz뭺dVzӌ5 5նmC ?\:u7ǃ ٳd\veo߾/2oߎgt,Xlƛo#FHշ.HAW_)~˾F[[\._w0~C3gŋ'OpyY k~*Pv}*GO_@'vp9|7߬x}=JG<\5prM;}pC_}@UWW+:a􀥑/֦+k zNNniؾ};ZZZp7'@yy91{ߥ/Յ1cpF]]ѐ$ o6~>XP #G䎠ٳ:oK/EFHнhDff&͛Q1x`TWWo9҃/#!!(bѢEXv-&Nݮ${X ٳPBdǿٳg'? , AbP]] Պ? '&݋T ^vTTDQHKK6 ٳ~OF[[.]{<\~0cR\.w Zx饗.XupC5\s50 $ $!-- gφj 눔GMl֭[Cܓ[YYYp8:t(N:o۷o֭[UcZ:dggh4nd2`0h4`@t\ :#䗐\r% "f)0h0{l$%%qgUtt4>gG'N@$Mݨuuu 5552eJGvЀ_HJJ`@bb"NK7@(L\z饘>}: **JX Ґ6-Q󏍑EEE|!y-}HC9rC ABB,XhT|M̜93gċ/'N6mݺUsxٌ*^t?sػw/qFUUUZXr%-Z{' C~`8"!!111$ (`%KT)((@AA(̟? 9n݊;C5}BB.rTWWoٷԣFlٲ%[o|ҧzJ~ii)DQ 򴍍ذaCȆ:̙3%ǣ(͛zCD xi˹&w^]hJ |x'7 k0}v릾Fuu5V^'N%rrrϝ?7nJ_Aht,-y\Q?{J,XǏ 0@~[paZzE|w?qԇ;v, 2LTVVQZA(X$/&Qr\***heDQd*,,,v8~j~vn:::ӦM#Axӂ"@vn7 JDD֦\lYYG 'N$A۱j G1u]G(>>V^ͯWUU 4nܸ$ r(GYYEEEl+A8)v$Id6#qqq n!i8|#V:BNN @'N3fcd8xވdV¡Cی)77{999RV}}}شv)++ ;Ef̙3dH6l-Yf͚Ev$I"vt򹨳T믿DQ/E ϕj{Id:th4Nv{@2Y RUUU@RE.]J%%%JrPzz:%''tRNN.bbbHtwR}}=_޿(Riii.]+]@ŋӿo7n%$$Д)S 7Ψ;?QJJ %''k=^L_7}L&cݺuGȽSmm-H&cIɊAN' ?//PMMb'$IQbbb5RSS=ͦhkkV2ϟ` AB~$iiXz-XVJJJ{.hlOMM%r?\Yb @gϞUM7*..VKfYkcƌ!r?!!AQfrrrCBh˖-iAnMjkk)::AP}HPQQ29EP\\EEEQBBB3}E6f\(( \ݠAhРA$&&z;wn}ƞә,zL `="g={vBi:烯T[=ͿkG>u1%]QZ3pX 8KA INFEN$Ie˖.@- _(KD:%&&*:!QQٶm7()!Rziܸq$Bl6S^^^vS\\LD=N6-dff( I4sL"g}ϛ} {jA$+V}oX...+>dAqlu-ɤkΣ|jii!OOysOS~mflM=o14\.*))crE^WvS %'B<;v HFQqWnaII IԧNSR2#Rgn6jԨ{SN퉾,/A lX,dZn+fdE1mu.݂1Ǐ|65j91^M3TUU)[YY@L?0w4+}O---~;C z@ IKlƌ!u%%0rssIŐ6o\. @˖-״F[֟6uK,(_"g5M7qz%_n7Y," 6FB=XǸP{ Z}+[79o?+$Hv#::ϜWDt;gΜ3;Һn C梋8`k%KVXz(0}_}tav%&&l8(L~;_ ޽$um6i!|W_}5O'__'ڬYt3Sx D 6fggZ@u/k֬ k\v߫?rNNNS& Xzw޻nhr$"\xץn)e]Z}H7YKvFׯ>w6k.(d2gZRTTBW`F#ȍTPL(Ґ!C"*S a ӊKBB]z9 sc=~ !JFQ5L:$Iӧ:=#GEE Zc&rFi6}50 ̀6`XXXH![5bfC؆_HeNJJ f233":&?ظn0S `0YR;{9S$Ij;`u}ll,rcaÈ[7V dXbBcTll{VVV 4`)Bƪ櫕_~>g"R^G0{cdX20Ò$QIIIH'̟?_iZUOJ3KDƍ ;fJIIH$_N6vb)R5|p$I#G3k9BKwaum2BY{/Bͻ:n7 2)###@b:ZE͛x'sImm-eff^㓓ÅBZZEEE7/%o$PB<=>ͫ78NJHH,,m4|w}7|7nID(εZXh @vi7 JLL$A&LK҄ Q lj'ܹsוrn3gѡC yzωH$Qrr23jjjt۱a . EL7[SKKTWWv5]r%AqoFo[^59zuW˧Oyt}>`ms9sXB5͌3OСCͅ(hhho ߏo<6&&sqX`~? _ҥKUV1/+Vܹs8ǁ?O0`ʹhii'|cf9?+WbĈ&&&X1 zM&W\q~? 6 _|JKK-e2 I]ܹs?7tyLH_khhɓa0 ǎ(C^^gϢ N 7|@7Mt03km6mUW]ߏ8}oڴ 6la0w܈bWTTTVՊc^Pby!~mx<}p:<߽&L__^Î;܌O?eee,Css3~]w͑#M(?\W{>:w 6m¼y0x`477Gı>zh %%F’%KT&i& 7o6 u0x<\uUZ|~ $IxpAg^oH<YWW" <ꪫܬXv08pB!u_* vO]] xH;wbʔ)SSS!~ 0w\lܸΝѣs!??`ъ:u QQQ 7n(w5J= _VMсu)!텡U3~Ƅx<$IZ}Q:鮿1vX~]O,^tx<?R \OǏyN+RTk9f?X2W ǎ?s .ripȑb444?!bbb0i$$&&2rO>.6kpyl6;S(S]]EEE]SpW`߾}l)(//ǘ1c eee(**EkFuͼ`,X ZI!3f > 28qbccacm?& ۶mÙ3gSj~={`޼y^x{o" O;W_}6 IIIS,fϞ(lٲEu[J^/jjjPVVˎxp1TTTt >>^lذW\qfO5k!c}Kxu(א`2ػ˿+0l0Cw@ϧjԨj25m۶= Ǩ(K5wWFFF)(jkki4Sl,R %Ih-*1ʼn)++^v;%IRD`nL&1GNDJƾEJJJHwIQc9;,UM ߹Ʋx2!zwqYNO%&&R\\HYYYDԽkY>vjrrr`0zB;z^J&-[c=*Ҙl6[(v;%''U#x>=kX(..l6ž&99bbbhرTbb" ڻw/}g2Xd1; pЬYhɒ%t} 4~jzT d2QBB{)b]m!>>^֯S^x"T8cnfѩW}t;v0 Eɚu]yrE㺘Lv}2 Dv+R8 6\Ԇ>`Vk>6u$h0bccNVTT-֗z 2[ iy a3g|aڵ's`\_Qjoj$Iu_߿[';S^%pW~qMEYYY]~X{«AOc+39-5sskt+Qa IDAToMDkvBV>l޼-ZDQQQ>"G}T7@ZZYNiOO\.߿?4zzZf edd` ՂکW6ktةC:ӭvJ0a @iQFi1dPkS&WKc Cjj"^MwW(U$I׿f;ДYzq:m+}R]Oyƿ {rr2%%%Qgg'|hUbccio$I5vP8K\\\DO\E=^|ē`Ol۶f?61dJMMS|6nK.1#,;112%$%%z d:9 yD @%%%!iT2A1sLMC ECY[[c1%l!mZ/bnHRh&":u7L5X$JTJJ F-Ëbrssu)rn:t(%&&Rqq1PO"e˖ѐ!CtӨU3Hoj*݁qh4Rmm.ɓ \iyvA:\ gr͉'ccVH)/tcl g9:;;U VT x"4Œ='jK&Ld*(( bܚ8q" n``c<8("M4)wB8s @YYYtСТg `+%0VzM6L4h nT1Bՠ&NJ+(v;njF&MJ,[LӸb[0cRN""RP__O`@_@$ZxqƫLMݬYH F(\.ư4T\ F84d4桞RBڵ+8pj[# gTss3utt(:lҧ1v2X(.,,$IhСu9aݺud*))!˥(K.!E4j(EQq9W@ ړ9Hټh8yfzꩧzzB LE̙FjT`Uc/ YvL& JIIBxorL&OF_sEWW"̈́W^ IGq#G F& k׮ڵka ?vލ#GU\\\WsQVVFa@Pa49JTT/_5k*d2aoF?ЗJ8YF? ߿?{z,zH& +n[<1qDر_SKzyc!..hhĆ T#"$$$pʳCwn6^upB<î]`41w\|x!"l6x UJ;QQQk+H|>jL&:ddd^KʠE^)O;wb O#G杗Zxjq$@D8y$*U$I}`0n#55M7݄]vM; DN" ai׬Yժz NYՅRޞְtuuuv"cǎT8& Xf }QL4 ;wĩSi&ǫ~sk'O QfmmmAWWWHKMMŇ~~gzjl68 O5FTUU}.]w?U|XIsBE̟?o r-fɓawjO<v_~%6ٳg㥗^§~~E4=z'h4^CٳgQRRy5F1ĠA3Sc֬YyÇ{Ν;fFkk+AѣGt?;NǨGEEn`x<83ITz^QXX@ӖB8x<|>)S/ S~%Kl6s[hwuuuxQZZ @Y7illDzz:?{AKK DQIJe0c l۶-0p@a@.$''s>QCB(?Fcc# =qIݔj0Lhy;s 1yUUUTٳEΝ x&))) t<oSzQyh5u}zz:Auoǽޫ`0̙3{ވ*łn(_ wVLp8p̞=;,Ebss3Μ9h>ti5/ƚ3f`֭سgOxǏb<3cwx/3f l6;mo@UU.R\qxGl27;w>G7o޺y怿oKVN_)•W/jBN}O?Ч1͛ 2cWOx<\yDgg':;;'xm29EegرXr%ա4,tff&N>2c߾}6mZX;p3fqI|h $ 8z(Μ9׫ʥO?'N࿘$%%/ĉ'p\(//ǃ>kT ]v^x{スr0Ә1cx$Iw ?q,n ǏGgg'f3,Y ?[3Յo/2JJJv 0a„EOd "ž={B? O>`X`Ν;z Daa!RSS r#?7"** ǎ# 6!"^y11Μ9χxnC]]"}z!N'Cxߏ;3l>{zSLL1kՅĈf`c7M or- 7Bja!@vލTL&K8q>S 7܀6'?ҥKݎf\R5#<"޽{1l0Ξ=J_~xwPWWz̟??"qӦM3fcɓӧOCŀxxz?/6Ϙ1#du8f୷ҝvA3e+:%455E鹋-B]]̧sB!x> NjWLO>AWW|>7j}w{F1$)>(/^,Y ෿.A1؜'w0`ՊՅ̜9 >v|.9rssqnIȝ |:pd„ e]ӵ=b#}ZLϓ?PހxZm\X`l(4gomۆb?9n.+//Ctt4N'ADp:އh4aݺuNɤ=z(uVQ,%%!:oNyjXp)͵߂ 4J`ʔ)sqYYCa_;8s ~iL&LNoP 455ncʕZعs'F#bcc#ymڴ cǎEll,?~lfqwz)r4_s @iiie{ @d 8NL"bqiӦq]v閡 ׃'FLh z( 4jԨ$.j%RUUy<:vX )++, ɓ' 4-z "r2T$rz7Nqq"g磖Ms΅\cG iJTRq)H3?nNnjt2t7jQ1>6mZZ2z "\2tƍ#BW_}ui 9%V$Z;rݚr\.r:acѪ28Ze#Rɞr(syx۶m!Td]b>Z0N8A_~=Q`{۶m#"!CDD8`sZ1Ç#">S[7թnWWWu\EV+hTӒcnnn8.f/ku~igB/NgQ#Y @֭;/|W4vF$~F.K_WClȐ!$I"]ԧϟ:)Qc)a4dAUU 0K,yig5STTOs8r_~aL7R>,/QܢG9\.IjYp!nvt\j ,n n)SU5t=zt=Vx駕多 P>" Y\.:u*9RIҫx1,n:G0 8k?&ȿW_} rYYnRk- |HMMm﮻ kVSF[-pUUUQvv69N jS9gOc1ڷE9))\_v_ z8RSSsrr(''8ВkhqČ^iiis@fffEX쐂a d5+ 33@frrrMѡ? _k,|A<{)DQsFW ~p8(##/XX% 4vX̓Iň@lI{ng&3-l3+S@AE4/k:(uM3vi~D j%ۭd:YYYqJ$u&M1o}I$>_n tUW紜>< vNvb^xExqUXRsF!_̟??4Dߌ=1֧O8\.ѻᆱXq %&&᠄@ kX9y4i$JLL$ժ3_(ls`;S5#߃& $W]u JO?t8| t 7h~ѠA㍽w8'*/bqFIDDd6ClG lc$I4bzX\pL&[F2 ac߿_Qg %I 6ڵ+QgCs(V!H] C>b ='GUU͚5$IK.`6zPHpkO dh$"r}Ax󆨻0 <>R;o۶ 3b!k @!gv؀ -5@\_qܻq_ s#@}}.CZRR_ȕH&CUaX rQZZvX=lɻlf?֬YY d2QBB_+NzqzҪUhŴxbZl2y|(H:t(7\٠zgΟSYYYFy0=)֬YÍ S|*;GnSTTŋk|Tgηhzv)&&ޒ$IV zh"99x@gz5:|>DUd:xnx u=vѣ`0(5g'6Ezb'{WٿO(..dr8&o&())ISJ].Pff&PiiiH`':99l6T"sq{D'[n75fV<;4nuvvjlTSSC_}8= fc\a;flڱc?T^&-[tɹ~EYMf2d۹Az5O>]W9")))b'>,`At8O6gig/0:1] Fƌ+ 庿 (ؾƘ^tl h0bccz:CrjaXre3=oҥxgua?9998q{\~OQWWX~=nV9rYYY^/tŭЋ}8~8L 6d2)~ז1L_1e8pǏGcc#uNR!Öٻw/ /m,ז-[}vq 9_3gtxG_| 6()))Xz5Cff&\#FرcvZQBF׿FKK K/ `ǩӍÇ#===$q8?C=:$-q>~uuu/?֢ߏX(`0I3~~?.]W^yVymmma}W߿?f͚>P]]'B\}xp8؈|+WDTTTPTT_6m}F$''k566~?/XWt޽[q}F 4e kwuua֭[aqcbbڪMׯ[ocǎy /I^_t?݉Bxhło/45(/$I$Il8yΪ&ߤIPUUSNq ÇR^^+WB 1y6mGЌ elڴ .UW]w}Ww~ru]6l*ѣHOO'{u2C~.Fx^H6كsȑ#$ xw6SRRp .5C8 bv9t||GO< |I~7={0yd?~aw}7~߄Z`hɄv,\P~t/ x<ؿCӧO;#Z Ă lmmzЏ6mڄ~'O*v f@wuց`O^;8J(2$NnfzWKrz Á="-G 7z@!`}r}PWW 6ǏhkL4 cǎUuM=E_8z/F ^2j*v̛7OG A`HF>_EرczB*(//dz> A}%^_]yy9aXpĉ vj6lߏbE &&f ľ}v̙3'xeِ{N#4Bh4?)Q*|,X'H<|3J4 4{=p :.8oߪ]Ayy9Ulڴ xo`֬Y\H7TWW7 ܔ)STjq둾pC]]y`Ŋ%0|p`0sCbhDkk+|>7ZV~itq^o& /2n]ϛf|>CJ`Nޠƍȑ#QYYlVVq9$%%^w9Zcu*=:o<jkk{$S(xn/0qQu]}ߖ-[0{ CM"lܸ_|q^mB;2L8B]W^޽/1c`ΝຈP0ԹsmQp)N#E-1$V݇>9`;QI]$Eh\hF#A@VV+DEE!&&^{x5 ЦM_<74{^>}#4Bff%] z=z4>\.W08gx͠})VG'DcȐ!*D*w_AUwnkkCLL ڸh4 [\tw RbJXIENDB`gav-0.9.1/themes/naive/background.png000066400000000000000000000331211423175241600175170ustar00rootroot00000000000000PNG  IHDRFrbKGDC pHYs  tIME ? IDATxo\}9wfwf׋q["pRXX,5*~RU%" 5Q(N[ J.EH(` ۻ6^￙{{O sBT*c pc$NQ|KKK~K[Ur]c }UI>nEB{[h?}}}>:uJsnW{_f0.c`ιɪϝ;wܹ4i34?p@ESSS~9L#S*?oٿXlܹ97771 C&&&;kxs/B~uW>[QGZ};~___KO:|zO,ܹĉgWk>kO'Np̙|wV/]x__[?^wv{ェGN<9==}ֻ8t钫X*>>;;;33Sqbqbbs`2b[,?aΝ5/..:疗pTZ^^޹sFʺs… ι'On5-.....V= 5g5_M]XX#N8Q{fg7 ù0 5G¿{?چ={ve||f$vs;w>A1 zԩSιg1oii̙3 >---5Ir-..|N__ߕ+Wݟn|L_Oj3g$?jm"ZnGQTy[^^n2OOOlT>&gJEzȉ'Ţ{RU>uw~%>wwιg}v1G?я~#|i)~vUxvy;N8 WA >V}7Y{̙3KKKUO;pOE핮=r|5P윋hmJX׼RʟJW*}{&ߩSjqhٶmu]266ae/'7D+s̙3>A^wܹΝy?g/rҥw}ڼsEQTyA7H?aERhl~~X,;lf8p/LU%6ݩ>|mmkN,n֮ k_՚xwf,--BUɓ'(7)Ν;oڃ,..U{͌lZۓJ?>4霛^;f*[;%}y}֔xv)?&WT1Ƙ`km 1qrULj_ڗѭvu\3 &ڟ5_U^^yͲp' V[k}z9￿P|ncFxZɸ |7|s_I?55U,5==}ҥ|>mٲeΝ~wFԌ/^xb#gΜY^^_yf\4xɓ'Ϝ9+̬bsU.\Jg:ޢ^[Wo,I"f!X/ۨ/2n!iN_k RKKKiU?,f>J}|nnfȏcmOwL=UW.Uiyyoo%4r߿?~$߿ߧkpBH{o|_* IQCΜ9sĉz**?opՓc$(mݺfըɿ~ TK_X{@ۿZ!jJOinO׳{;wZhmOS^?;qDӀйĉ0Q \s]'4O_O JVA>_AP9]Cg~;m5yM7xX&מmk^ǝ,^p2/"HP(a=V. >ؤ|>v`AS(*c}.~t% (PО٣G}Z[@ l244iz _<СC/cǴ\.O$??jYGTa@}/~s΅a`"E~z^zixxA׿u- N>Mt kOLL ~_y;s1ӟ%]uO?@~饗N8q-O b?ayygi]^_U>ydv522>:uTnqM 76U=)h|ɓMFڋt Mӌ_{޽{`` U>7}*?o*z~jWzPӉ$Ww=8m @?x>~-sx KWH`]>>^p fqlݻ7Y!#G.\T; r\V}Ae_ZA @̀=V5~ǥsTngϞLNNU#̀E &%੩)_ؾ}w޹jtvMzoۛ oxxxaa'[Z,Qu{ccc\(6_-=+^#nF ѡ!_Nq>ٽ0<(9HZ7%iA" :yc$]Hc)h100 W\I꘤XGC :HAm۶%~LR4rnݺ՗S߈0tW_}ՇRF10}'i,A F4(hI)2   @#BRA.L x'?0Z c3$|%ZzR+~2qi Ȩ7x#{ɨVٳg}(<{lvZ/\]m"dAX}}}P,0LbzY$@Ko= !PWz}Fe=.XRm|yvv6كʮ4 #a,..fWqzhs >׿Niݤ=g? i @ v/LOO_t)㓂8lm*8!40)hZ45& @ B4-@ .D Z\.F%_ 7 055xǏwߝ]_0A?cvzRk]O?5o=hALMMP8>>]GA̮VĄ=xᙙk (j m$ՙH4^R]nf,JX֚4;1z)h )hj# @ ې6R)h )hj# @ ې6R)h )hj# @ ې6R)h )hj# @ ې6R)h )hjkM r\Zٶm/OMM%^+=v޻wo$ܡCmm?#sn~~oϨVĄvx``fff;x8xe-ä= @kYR)h )hj# @ l@)hB@٧ `+$$MNN899k eU#m622m{hY>tsNR޽{u _\\\ݻw'^%;633,zM ւpZ/lٲe߾} @_}U?K]wݕa{h-HA?.]JV_ RЧN|r~h-HA+~7)h*RF   @! @mhRtRF hM zvvlْxѣ0444::U{h;::Es9/gW1abb^|ᙙ_޵kWMCr/ dHkFA]1me q0 Z2<|8HA|NH$dz@ ZW6WQ)rBɚőHAijM \VBh+96 -`R@9Y+( Tf+w$#gnne]kRf$E}"䴓7WkąaXUH)h}Xr(ʁaI_lIn-zK|]e_Mu-i|={֟sssé71o?0ͨV0рVIE <Ou@y(g١C2]&'>3n+n^533ϲ3gA3M d嬂fb|O+Wy睩7I?JC=E` k~I:8I ٳT*s7Hud45#奜uG>8I /^n-# ,d8ILab}}} 8I%eS@6Re!VNNQ3$:ZtqG{ii)=}:)h )]w}w@]W]F2MA?c~0 =$W2M`R@:}433VA7f0馛|yvv6=bD$R =G}ߗ9`e ,R@G{|a~~~ٶe徯qMt d#Q۷o?4b2JAر×KR5X29Y;3>U:۷P(;3y{o;>U}t[,[ _|N&YŰȩ *駟UK/VKiUf{ΝsRo>裸kzwR'|XXXh+cozpEs.W^y%:8V2*&z@fFFF7>>a%'2X`l;9r˾~ܼUu3婩tbg]YXh޻wo^CmivvlL hM{n_X\\|SlIѣG}ahhhtt4 Rq @LYJPattvνz}x$,>|xffƗwڕ19{arN֭wke {W\񅁁D(hͰЖ\nɔ"^ke {HR]. V7M~4@HAmGGG㝀F jM; ιf0瑂Xd\nS ^8ΌU˸Z-*Xŋ@)h9YR@{".rNe߆_2U@w`4Z/V78pn Y" t5#U X}9H@HAke?{19H@G#  ]|9H@r]Vr+50:;;Mxnk4`4>M`NRU t As`E2r:EhFE73>hFAYY+\;2p(hB t9R@zX@0 nLyK`S+CI )h]HA =g#)')*SIR^WrT6Q2F j+*044tg<! *쮊|/ 5 U|yՍg}viiI1_j  *R@rRT2ʓ`S >rŋ}y-h$Hp[=iyyY2@ bWvOlku!L.4_}2U@wX9Z$=2U@KнV b4нO;v g4c4NP(ۗ~HHc snbb"ɣh- /,,S R߱r.DS`}Fd%E @asyY˟h-\+]tG1FTӹt dZ&*5#㌌3VY=a%7'#9#)4aߐg&p+@p)8IV"v2J_ѣ000p)"q"-Nq"6&DM̊IO?tE1={J޹"ZVB7. z|K_Rk#mNJonkdrȒppaX"OURvH UIQ1aI=|1FA4E*/°uZжӌĥHDn!glJtr IAP*'Z_spsؔX!ۜ화+n֮tVc;žкP&682ulJt:FA 2=sttg {9O^ FbMuq d)QAhxnXQs#6g VӧOŽ;FGG[@%e)p<>pd}0#g|2 n䢣 =.]L$rFV6'<>>օҖ4[522HXBHm#GBPxGitSВ:{M`c\|+'E%_{|=׏R؋IDAT. }^G}J@cJ9QR~;XL)cǎ@"uzj$sT` 3nG處h9"Qro= -|a۶mBd^ZdJrQ|@ǪmnG$R@R-_\\\ݻw'R -fdf2N2g@=ʀ칊ȸH~+rФd1 Z䵀64SL\ v(hzzP4y- Վo!s!*]@kv4*,FAѓîI6@/w˥R)=YK L q۷P(;3H5ַpR@f8Ν;w\rpZH}Mb;B 3oGxn߾ݗx㍱D ~F L[?}/J{IuY)'YfGaAO`Ϟ=bW_"Pr2`ٳ' CwkqJ!&ONNsvrr2f.Q{W0>>+ dT঺lŋIsJXfe+WaT⬬J.2I8>&uLVf4йV`Nf60 qH#>JAs2c¨HK)Pί*t60l)Ť~HBEN %’Hzqߍ~d n۶͗L d9E")JOH& 5m~d M/g*u0H/ʡ?PΩZcUʱ4N6???88aIA#N WgMUnrRYV@n^t)#& +_J.W?CG^9V~~tTz<2)hm8ɕ k}ann.5"IAmd\z4>SɆMoGs1-h3 dwjwLI.Eֲ;X Y#cU" ALQ@7ctW3q?bTlܦ60Y+ mqV:JeAȶIΎ#kI>9{h?qr4:).3+_[馛|)6 aW`R]H$59k%#gh%;ŭ $98fޕ^n8zEZɏaV~v򅹹i I-k+Wv8 # 3ʭ|pwR̭ rЊ{W+KrNFoxbAbH*]Ʉ:b|h%-gs;iY+8Y%٢B6L)h\#W EF' $ـjU QߒE$ DR)JVh:S,礪1 ~՛ìl7aINAT $ɆRhl$S%٥\dPA@Ѳ_vچ|B\1wHFKHQyP2 "YHNZYoGre?2,IrFAl )hTLg pdw^ dE&*%Er%JV_-R)\5Ay$ST4FA=!~ W̝<:I RN.GG f.IrW*KyV"åC;]2w4>Flsq%+-$ҿ 9|Nr2rRꟇKRQ P(TdP X+8iY(kxw'q#VluR p 7$[l`? |ҥK7 (Oԏ$^`uNQ(Z0oU>rsNRPػwoLôJ #wyܜs9wرkPZo?UhS011ϵtk:v옯iaaoO2X[~S?U/=*\=f?/ VȸDaîř/o߾=4*ni@ƩOur!u@8l-+%/(Vfewގd6[I9)v,՜R5ހ˗/78, kNh|J)de+p'12VL 9ٜn^ʗ7zh!>aY3աQIfF5AU{F**[ olM'I S xg|_jz-ilÐ  L/$WFFyERH)Z*#GΟ?˟瓭@]+H :\TPtu#&a d_n&[%ڜ"n@"%5 mUY)r;F Jk>HSOU1ַmлtuR(-wP@lJ)hIp/r-V sk8>tBiAfNh9дtIRˢTwAZ=3Y%q$.=X@+n{GJrvV7Ǔm6::U{^vu?SIAH(]IK*-h\RnL $etA1GIV5T\+ NW|_>v٭R'92{g~~ *ۈqz׮] V 6gerdPsR(WB00/廩h;Ŋx_۷} _Օ+W|a`` *ʙ4:9IA#"((WT^ra$tGOI.R1߭ =[k{챌j=~xpF=~ FoRNe]݉H|yuFy]W6Xŋ7>>a1;P(ۗ`d"ױn=v '-K˒9k%(*E LścLR?g6CڈY_0׍ށ'xbqqїkP]L :%Qh࠼6dsd˫<)0OrTgdL(8%^ks T*|H]~QyY.#?BIQFJJnt#L y U UVC q!(?[n婩ЈS.RN*>3-HQIQQQ/\9"XUدb=`'\)J!JȺPEg"Rܬi_زeK7d{soVRUke?@҃SsBENաn~ 9d"Fn(HYFA鳲9[ jty(viPO@_V[gffIwbp|q}ʕDPW~N۝N{m}4ԩS'O[>裉QfoN =@BFְF[q:?I@ըwq;-)p&dao۷'r̦R\ehv?`g]'E1#YYЬxyb")h4yq&ʆ؈c"@@hv?`.G%r_g3,*)hm40څkoU1rFFR*,wz?O-(\'R$In)hUL Y_Ym}Vj*Vd\Xh +%9cœr{1 ]('9Vd9k˕#f___"$ U;?8n.R(l*.lN6JR(THސxSm۶l 6Rqq{bNK[0ԧ]n%U~\hs.ʫ9aݻwd46L,E2ɪpЂ8ldr 2x;-gt>*M.:ʋ/˻w*hL\ 'H~gB߯FrI |[ՊHZ(Wo#;633suIA\##9KUk.ۇ5eٜ$#j⡨9+cֵJdmh U6)ge V$k ggg}a˖-Y4 }W/W@IRG  1~Qpߒ~sϽx1zH]/wxkW7J?/}5ao˖-CCC[m~~|R;<cccnc7H+GֵGFFmeFGGy]v 0 s܎;388888XxJ=;;{у>|8߰ݻ_sСC6 GIuOF[r :}Xɾl.\(J-OAA}W B[o߱??? k|;wuO/}KM7䟜H G}/~QsA8a BKKK0 h'R(9w믿bs\s.\KԶ=_hu]xqڭ wcڵ*gcǎBvs333W\|0,O>p~۰}57xc+ۄaxM-NOO mXX\\ʄ8=O>ݻw\埞-/ p D3*GMZ7tTRq}gTWpyy9.v0xbXz[B__߶mmn}NGoyђMorsҥK/_^{ߎ&4>>Usss3Eɓ' &S[ZZsS@v{@0 }'IN* 5 Ú)|>e˖ߧlyX|g[,LOO?S~o[nY, 7088FpAX?OIzWx 5˄lٲeppq3 Bp7n%hsnqqqffZOϖZx$Am??:t萟CО>Uޖ䌬;v|;ESO=|Gҭo~OOmC!&[ IENDB`gav-0.9.1/themes/naive/background_big.png000066400000000000000000000610351423175241600203450ustar00rootroot00000000000000PNG  IHDR/6bKGD pHYs  @AtIME;![˜ IDATxyxUչ>cH DBC@&!ADZ*rAo}Zo+ǡkl*zQ(A 2!@朓3c%CHBr$>9{byϻ.SvLt:e)aH)ߥBt0J)!7oL{ؾ Ĝ4M40&:_4Џn/]މi6yu-]^5~@… :iKeee:Sx<Xpۍ7ˋu8^y/C=p◮]fO~٭g7tSԢFU999֮]w޹s疔} (7nƍBV>{W\qE?!~9s NwHHHIIIq:IIIl{nۛ|iȐ!Ͽ袋*++WXꫯ.['l))).]/.//'?I߾}?f?߸q7|TYYC ::tرc|Mg?Y+a־eM:5))fVp8ӗ-[bŊwcM-]W_gϞ˗7.##~w_WWwȑ۷;?~aaaii ƍפ94 oԩ>hII?iMZoK,y뭷,Y2tPUmm_~~̘1Q=u˗ڵ?si{~7!uuuw~gΜdy_^^jժ3<wuWd nݺGnذaɡ|w_~ͣF a^xC=->&].UW]+C=svm^xaK!,)))))ӟK'NܼyseeMFycGqꦝz+ &/^TJ[nȐ!wHNN~G߯?\4O|~ݾdvږ8 |C=-Mw8ӦM[dI hΝ{8X SPq)fKMMׯÇ[=z/n3?>11QQ^^u\pg|WӧO9si׿fU)uV6NsС?HNNڑXZ;w_y&ܱcNJ+^zO>Do߾W]u'Mh'N=z~ vwmNt:!ÇWXguk۽{G9{l0VZeYVvvWTTԤ4ͫjܹiz뭏>hz/0anwݝK)5bĈ–`zޯ^x:_qBfM))):>|<O,kÆ :uj+XJ˭:k֬\=e0[Zg?zpt\W_}^}ݬY@Dt+yyyO>㫪n馥K~++ӧ}z{Ek1C^{.hÆ _~]?#++t>S-ڵkWKIՖe/mj%>}^PPoVP|G>w}ƍʚ}nw޾}{gS'?;whxoF>}UW\޽{gff'--m??3֧OfȆlׯW\yW333ŋ[noiG3pO?$]w;4hu]w~{ŊRJ4fRe'PJK3+jjj-[/8{ɓ'ǯŋ[Y2[+**":O?}=ԩS`0v}>_X4vaʡvQ__[J)})C/x<&OnҖ&$$vmZhqj0`yO>a4y䑖7_~y]~ݺuYYYSN5keYofuuuAA<0bÑt: è]|w޹wޖ0!!rx{g*++?yzKIIILLLJJj=s*//߼ysKNeYzxk%!D 0MS-B??tT"R&}0MLHHЩIB￿b?O;=Ey<=\n޼'袋B?QZZjY֞={z衖륤啕 ,hE>| _pʼ@ PWWv_=\p߿}vW__t뮻!W_})))\a\yՁ@`O?ԩSGJp8K׷>_꫓OWg_|{ウgYcC 뮻֮]]%|;v<#MFM6mtW 7ldqi.0+R7 {G{! !l6۬YvQSS$;vO/~'^{mr9?|K/t4_~˗//++ۺu37gfKJJjul6R GHy>?s@gq\^{Z\\|СrL~[y*۽hѢwyG76Օ)++|:^dɴi:Yp^xҤ3Q/~G{|ѣ^E/裏>|X裏|oÆ _g@\Z_.ƌsdggn=0 am l))))))3f^m۶mҥW.))9餖`0hۇ>p@#G'N[ou{n)VVWWk׮f^"j׮]vz7nF^~w„  p:/Wv{x~~ә*=묳Νz+++w_.[lk609hРL}h6[9|2M69ϲÇ>|x͚53++kѳf9rd^^^ZZlvfKJJJJJ>.\z=nKiVd~*؄E 2?p@EEE'`0Zh@}UE:t{ I&fddd݁z.Un۝ޖW%iӦeeeYr$ZCʮ;:7 ~a}2++kرf1bDnnnjjjK%jS@+VOe<WR%%%˗/_|"99O?'Nr‡ބZeLLKKs8mY_rʕ+?*wW:puGT.^8qq0#GYNPݵk̙3#W6-|n @Ԍ3/q\Ý[= S@OsgϚ5W^mY֖-[}۷GEӫW= Ҳm۶{v:cfx3y j@ 1,|#=p& ;7ۼnaqb)i6M'zni S1ɐOBb* >*Oha&pq*S___WWC1 #55uРAw^޽#{qqqQQBH)m6ۈ#-Z4dȐȇĝʜ|Եkך9xdP^ƌ8V'{IHH8p@vvvJJn'''H@;y.a6SH) p:n;GgvKwT -eE20 deeM8qرɺwܹo߾HtwB~͛7oԨQܮzW}Ht]0RY0v;2inwnnnhL-++ϷmnSM 0 p*:1Qȍ۔ʺ:}t:{=tGab%'R%lGgqjM6ܹSl/|N3#G^zիWRaÆl,o@O! _ƦGT{8p:ƈك =Jh`(rUcfBBB~]___SSKۑHGMǎr-kjjH- B2%%%;;{Ȑ!1@76eʔ3f$&&CTaas=w(z;lܸR38o7n\dbHNNΠAtL0ڶm+** v>}Kq.[,bv'&&2ey<WoGŽ|ǎַ4tciw)fn@`0|)`0j=a6;zrt= zިz= `̄R>}  w׻m۶@8p :kWJ֭Z '6rȌ }xV4eP= =2jhI4=ǝV6mԨQguVԃ~'p8_|ԩSuZ)eY=Sf$N4ͼ\=CWTTlٲO?r$LZ$t:#OT5:cS,Ze8ݮ[eLt:6[ V*4OJifDÁ IDATxZoʇ2@rss9\ۭo)** Hwv;ЍJ)ݧt3#G,>| /pUUU[l9rHdbbW^gqFJJ>x<L;*#F7o^C8o׿0b1g&AbrҎ{zzCڽ{]"2 }>_hK  w0v{hc0 E rڑTJ=b1d"=2f8dۢV*EIohqeYeŪQVaTݮox|M U8Έ#.^zC7Zr_~I;T}}СCӥa\;wܹ3VQ➞>{s9GgB`0jժ>E8B _{z#Gfdd06%Ǐׇ`߿{tw0$˥}>_yy9v jڔ!8J) l6[hbV0PMx  S÷"6%J&q~@԰s*Ќ*$-TVFh2@@ vj4V U@Q5A *ݨ͠UhnTf*th7@3hZeUs]2ڍ9 Ze.VFhFWm61a٤ *;vؾ}\.}=zpl< 6U䉻JLLԟ6,˪9xm"'a^*E>0 U RJ K@wo2q'iK)M ]2+Ze.VF Ze.V֦VtIV[+_KMM=Ӈ VJUUUD+< 6U=''k7nзxdȐD+<BرUUUӆ2!!vG+< 6U- ! HNN۷ޕ)ѕZe@ R\s=;>|x D[>TJ[233'LлwLʴ6UF۰aC =ztJJnz2QT5R6R`۩V6Rɕ+@DuV1G Ze.VF Ze.VF Ze.Kz}hm6[$pLw׻m۶Cә1jԨ38Rʴ)>rȫ2zh)4ͩSڵ+D8H ںdLmm~ZTTTYYR܁>vT~]]]cNHHxVvvxRJ4ip@w%[epR`v :(@d;xO?]QZZZTTTRRRUUkVv$@:gΜK/tĉB;v|? bt Z"0B6Bad㽅h!tgyfAAr\4iR߾}cՎnOHH]/xi%B4dnB !U>RJorkV6%z;wy +V|H=BXR4JP1q)q0P'ͱg00|orMׯ>/l=*T__Ure % 4 PWBX\So-۔ LNweCR ekCޮې*$ޮ[)q'v;gDĬ])ZgchBhJ(Ze[iSN8~ЩHK(%UTszeIPӐЫc{+rN{A꒹ ?P*Tiofܸs4hP(qeYV贩,+ixK6!lB(!B[]DǓL6W^i`eeek׮---{jr"4M3tR6%ߴ@=8:FXB h2 m6B)z?ᄏ0@7JKK+**ӧѣGp8b2G.We].W߾}RTuuuqq~ Ueekf $]r%ew}G~Hm*&2D~Cnjo/e߾},X0aөO`h۶m\)Yru몪BUC\*@)+0TJII9srssa (//W~m^\~}4t9s >H! !L!,!-!d[x)v{3vl @U\\\WWwQF%'' !nӣ 2dc.C T;XWJ&glj1J`0 ǰTQFfK bO'J))eY@ &%lZe n()R(Bۤ2]<6 4M5 }>_z(CCH#[COC t6]E0l6[LJ'ɼ>;33r[wY[['J-IDPUF׭2&MZpa߾} ˲m3ڵ+@Pl<Ze:y➝]PPG[UWWe˖^z2Bu@V4&PJy<;.YB(!;<ɺT?<mٲeQ zSjUǟvi^TbB"#;ZrU:]ʴv===]w !^C={D%6I¦@Jq3!)ާdeeeeew˲B:2BJ!-TNvgѯ_D}K :W3޽{eBoܸ"Z@su袋ϟ߷oЩׯ///GVf䬬)SL8QodYV}}G}t:t(A@O` !JwwQ&//oԨQԭ ֭{KJJ:3Ra§ʨF}-:sCM2?c6]HRBSmw8NSׄ,˪=tЎ;:-@yRC͖I0,**ϯ pgٜNgϱWv{(_'چ ڗ4(%%E`eeemmm =.|(/QmSf/47 Ʒ@d)CCHct;s2 i͖p89|;|:Ŏ;񌌌<],ݻܹs60V#I{R𚋔0 j.Y>z;w;)}ϫ#GCÑ9a„aÆuFlأUO5nASjꡯuEՐyZQ (T;v0`aRʴٳg{Ŋ?LJ:t]bEmm!CnfB{W;5PhZd5ATHKʠ!i Cz’JuÇwURRR[[o1 #TtiL {3ޤC+ĵkÀC1eYE Ѝ %Kq1g])n"ѵ/)n&˲@=n!GlIsRLt҅"˖(@7LanN;sˋnl$(_ !T'${mL3y䑢"]Rfee]wu'OZXM %R?:QH=RFa -[*wW_}믿x<:,u/ja )<_-^t)CCHCHy*Rzp8 ۷/MХѣҟ!l6[FFСCǍD s*h'i թۧMLII1cw]pUFۼy=h:nܸk&'''j)!o. HaI:?oG}x6bĈÇSqSw2ښ5kVXQ^^ޚ5bĈh f'+Ynٲeǎ.LIIIJJ"q.Ľd׮]GzÑZ8?2CS %w!{I) zۀ)2TaRBXW{c3β`0.kгi6w!ݻѣ Dlicڣ"(d@(K*e*$Vq/++[rիҚ~۷G-Dd_:q@$T!_~BϧG!C 0 Z@ !L!m0,CN2 *SWWcǎTUU阤 n;Z@OWȆJұ8#bd#x-XBH 63C DB\O\oQB} vgt[ouԨQ:k,g]jK!. e(,:-C t.!9RZReeeʺuC3{jjȑ#322ݿoe˖=Nvٱ^Zes5ɐKJJV^qO竫 4@KRd č&뭩rz8H@TL]zBXZe10v{hl1TV$H!BUZesCLݲ,D]5pކ0urg a ]m]B5lnDJx|>2RC(), iBBHae5L ~cƩJoq@gRԴ4áoeʔI&麶eY>>{<O4#U#JB򭎿S3C7L a"p @p\z߿>}Ib˖-;v쨩r0@|qWN2)rss'Oʍwnܸ1*AZBBHaÆ-X`mYѣG7lpC 'Yce:*"55uРAŪLGBY{V*E)JuVZe Ns-%!m B4[qRg\U:a6I+Ja z,)42t[1eMĞ%DHCHCJ(Ktr'2), MZQb 2Ih65w #/%.Sec\6Kt.wiYBYʒH t ZeQU_W2PQҲ,˲B2sV t]; ɶxѸhRI  0M3Ts=KU=K (c3R462xDB5uu0eOII:taS˲ʎ=@@ ".þ RFcDCt\R E6sũ욚} 7K;t@{*1)tfoi4zMj\jyTCkC0tL}WZnݺN ө ]a9~Rؐ!t]^m4y "W{@^F%2BQ#TawvP^0R*# 3 [Ew  2~QIi` 3"2~o v)m!z8h4քBH$"!'>:|01Fw+Bk` n<*7sْz*08 47^*y^& 5HdŊ?|:nqxvfjR\Jp8H$Ѩ%͎<>\ucƂEYxO) eFGGO:umq]wժU?S !DàYsߟy={$ɠ'ի[B)ce%1*%pto~l6kcX,m۶իWWyB0XȅRFsەfoV2$"[~̙Çju?ؤ4XTS2w=sիWGFFlL8\n뛚H!h \6GSa뺭7o޾}55bؖ-[vuuUyB00#mesuP*nTT+SaM1V 7Q6fO#?W3۷nݲDe˖6l|Q2SR*#栨0 ĥF#WS*WS2@,qʕ+իW755UyB8Tawe3R0oy c3T Ϙ{B,ֿ;4Z+pUVbB,X83J P.0 {ݓ`ZHTHI{&t͛7f8N&۷oߺu"v!D}1y`Q! *TFʟfFTP<1yxY υq2)d=Xb2FGG};vدq:N@!C160̼;)c@f){ >7"[ e2rq"9kt:gݿ? ~zڵB!+P(xd4K\<  X {zRpdw{lE)捎^xq||n677wuu޽{oL|>?99Fmu{,kjj~X!X0fTNi+ZJ8o}` 4lr؀ Lĝe QpMa~wQΟ??l'? 3 U1eT_ASZ[[WZaÆ5O! )^*eZ9)sQڨx0ZwC Xށ 9\R\p]hpa`X_~L&coinn޲eSO=UƔ>}v3 mݺEoooe&Ǝ4~1$Aa9V.+نB>s7 1i 199dlbgQ*sĉwXbٲeZk__5O!J0\P0.2b.Ewad* :n19<TGbDC (~m"v/11`IOB쉊AWB!_q8Х*2b~E%Ń9/39fx0\ױ2ы2c 9913mGq/N20FB7u]; P(ֶzꮮH$Rf~ם;w?ܸqc|>?66655U !DCbaz xO3M_rqlR ̛Mƀf=la kP '&&RT" "q^u":|p5,_fݻɤd摑ǏWmB` |ʈGÅY5vpJFԩ|>ӧO֮]sj{,K&bQSSS}ʴM! €??YV-2#VEC1tu!F/rkkk8ܼru֍T%edX5͎]z޽{iB4; P\},vKʺGSȐ?Z6蚐#^cFFF_~ڵT*eo k֬y뭷S=M05L! NM0v`YER*#*O) tX4<ȃ Yܹ/ :3xoouF!jH0LƠԤʈ*.&%& 0a"&p.R+{r~gH$ֆ2j܋Keڠ]!SyZR'#ja2`d2`ҶTΑnLLLLLLܹsgjj*i"ֆ2"o)Bjx4ʈ*Q(!0h TZی;3{Q ERBQ# 1HBaR$)Uc%tfh. hᩢ2TF!jCqWg&E%)Ml+bA?:8N!D q'c*g=)gs ݦ P`PF47Xj*!PlM06 (m5F)gcU䯕n6ݮs!2BQ# @ĺ Bf52RQv" .).:Piȟ}1Je-|\Kuh{{ psssu3^ljB)AL&gSAJeD̻4hi3! FoR{(̈INw)B b( 摙eEy711f8njj B!cL%g}m)B `:sDž %Vp݌F6l|ӅBT̅676>cIJrGdrÆ DDDmmmַ\Rw 1EJ)R!-pփ*|}'NrĄ];_+_J, Jef%2BQ5A خدy\.dR*G7V!D5H\!j]پPcKDVs-nQ}:th͚5D.Zt8DdyO&(yZkf.\םAc} c̬冇/^駟Ji"ʔY[)BQھP0y6|r]wӦM{}7dp7k MDH$G":^^f3L&C5ڵk~#G.]422 cKefsdSSSOOOOOO"SĄL,B"ڼysooz):輵FDh4&ɹ+g?KtRftzhh̙3}}}.]uVU>Q+Jʸ/_{޾}᰽|>_ !D*1rvup8Pp,J<'9ڵׯF3\k8͎bfcd::(e?v4H^H$޾roo|㗿e:wK;vفEiU-pp]c7{zzVXaO61uݶH$b2%FOOϯݻwwtt[1wd2J)fdz=1x'`H#>lf>}߿'Ov\0!O[[۳>/ٳ5AaH$RT.78=nL]AlB&''dwqŋ;{pp _Rjv׿iӦ- BtQS}rr22ݩXѣGO:unˆF|Wm~lbX?[8>>f ^9rʕ+ccc 6K:nz]vbyǖ秦>0 oxpP~$D8կ~k׮b5M_Lo0bh4jR=DcL&fGk8udgKk:thƍ---ƅ ~u]^-H~LuBrCCCΝxx|{ݷoߚ5kdUkOP%Ε|޽G? g}wٱcǒjLfjjʎӚSP__|pT*Uま-^|xe˖=zPђJi;"H(Ү hll6.KT^ /8p駟hkkknnFNF*Je2?P!Gx<^͚]Ѫr[rs??s;xϡ?722dpKep, %FE3<ꫯ7r\Qk?Z[[KBt POזJP(|2BH$=Jl +DVR>11GEm۶ߞ8qb0Tgg /o9555>)" T=`OvԿ=#,7}݇2A[?p?˶*;P@`\r'oݺVy={*N,Fy^)wb6mzW^{5kִ?|Bv*91hT6->$ٳg9r…;w,KG+Vtvv.[,51Nz}/۷lٲ;wvuuy?y+׍e[mIENDB`gav-0.9.1/themes/naive/ball.png000066400000000000000000000275151423175241600163240ustar00rootroot00000000000000PNG  IHDR*<bKGDC pHYs  tIME'F[ IDATx}[l$iԪ{3JU*"rT)FZ@{a%"jHl0F7I! !C0``^a;;3/~9m/³3ϼ{/ǭ H$t]u]x< Yl rZN,JTZXX04MbH$N5M\Q|e9- jۻVy<N;;; =3488)Y;;;1nP(/bVSU~U,Sxss陘hooFP-$uJRܞFFF^xdzzN zI*jmmݱcityl|>%RżoߎERU5=ztmGd2Jh[[[SSï<ضm[&:~8WP*REt:r SVqx^(b޽{km8;|k"D>#M ¹sh}>g4M$\D6 V盚n4X,mhhIAرcȈ*t:O|{[=3>/Øtҙ3gt]E@ XS Vn~p*¯fff^*Y$)iZ>ǢڰaC&nV iZ2\|݃Y777'}$‰'(?Ӎ>BjJ?66~kP(hahh5fYѨ$麾 z{{AAQx<_gLH& ]\ӟDyCVؘixy3;;+˲i ٹ50\!0 ,B1a ᅖJ.U]|͛5MeǜᅅRDW\vE%Hy^,xv5;;kN8aw!]W/|>$B$a w^{DBEZj UUEfunݺiy~tt ,˕Jp7?ui'|b,˺W*p$IMӆ8{179UUUF蒼^/^C(RVAΞ=3 l6oΝ;U$^RB{y9X2QV%Ijtq<iuM!R,;w q,s]u |2lJzaA r\V=rŭzW`gΜ$J%bRy~۶mDYM:;;b7s`jaobo37o6-n?xCEQk> bȑ#$8p80Zaa!Ţi| ȍuP(ӧ5MvԔdz( wC>}:ˑڻs ǔ=(ݹsgގ`rdV<G %OMM|>#,ݓ>J jI VC /Z,I(W^}xV.b__sttTӴ` \LUZ&I$I###J7nѱX.ioTL&٬KQL-Ay&Tt>e7.\\K`YHFZκ uttj57߄͘ "8 gxxkJbcΜyP(qZlUh4 t>[(83`G1 "@4x<ܜw*"m.}z24/n'''AD"_.\V`\?9:::t]wx`NVmb8VƏh>wm!xD((8q. ~Ry^QEL&H%dhVEo58,ۑ%V H1X,V* /p(HAvR)Y] OB12IUl;<% ª(E6ڊNr:t]1.3D`Pu֛ =am'300@5kXdX<ܲxuȣX+⹥RT*a+̄6OSo @ձ1GS\fjKK TUu={ǎ9364 Lv$Iw<6ˁ4n hJ&6mnpo:G㌡T*.цt:m,A]= B sss)u:l`~8 ͜K֧Pƍοu^r!P -g۷JkZ4C*f/HWBW_AJlA{e &IϟuݜaI0 b|ojjB lB"wd",D2h6W_}/"lFp;99iN[*G1<ɓF)k<ӵZP(s@) 4>>ިͥ@x1xcո zluvwwe%=ztÆ 333ZMQ!pАjlݜp8LSO^J=Iӗ.]JR&''W rXtzNMMJ=zѣGQܹM8v<5;3 t!.cqDqk677GAʪ$*ⰩbK㸡!hI ;l @>K?Ŏ'|RU>kpAgϞ]XX0˫,3X,WׯEKP'O4---]v74&uZa"EQ/X!T\.gY\H\n~~WT$o Ǧ#_Ž+\XX kڵk~Jq󽽽d+>/׿nnnuaAr9ʚ~I3]`$hf IۥepKUUֈ+ b :lǎ;k`+àL5%͋~(n (uB6%62zq?:%ۧzRA kcqO&Лo 副d,P;RX2bTU`c $a&Vtn1::JTPR>ҥK(E: 1柛o!4WԮ O$u5C,Vq}rp6WaAU}y.sW*|I\1hNeLxL  >Z~=+J]m) G? 7A:UTZZZа!2|Y=oܸaq^A\]p`PUrVuRi`i~~ &''3 S.3#S---iņb%I2T"S7iiiXD.k4}y޽EL&,t:` LNNbye2E#4MKR,fff,kz" ѫW3c lU7A3(4H(JQ[@ FUU\BI=qKKK\g?ُcm-ZѦ18Sɲn:!XH2\! nݺME+ȲAPVݺu WRaErDj|> G3gЍA8yҴE-;66fUUwHNs UUO;::~?]IF5G---z斐жmb,)0 H!T&9zh]kڼr/Td&''[6EJ$2ZU|FX鳭[a+S8X|)}'3aXѻG"؀IgA]Fݾ}evvO/# nڴR&O>lwߙ_ͮrـ>+0R.+8{ Sd2dׯGM(_}UUãa6tz^G L&Ey|Q*9R]&9{lC.YpT*Α#GTUV~a[[[$F,cŅv$%! ׼&"wKKKD@[hwD|>ݻwi잫j__EFfqǏ=MCnln%f(J*Z\\ BȽ"go*Bnii(˲@ @ ZQ, ï*nsU0ϜGOT*~??ri\F4~rNs5ӗ[8!؜ :jb5(*HDKԁ%Q]o@[dp+ 7Ċr64:q?O8+[u> |P֟9 4jނ݁@Eex}ٯ!dY47J߼ys[[Ȉ$ILƠt]7"gg'z/PTfggתrP(JPݻwaaluݻgΜ\|>.6v_y^Ͳ(===u.4,c D*xa^6lX*02-E;We;)36==Jh;se koA ֞*6m%E!0RB{`iXhFT577߿(sēaGA(j}駔É~o3nޟuVGGÈLmjm#@y#FV1%z<G+'r> x4-;zDYmMMM%6QAӴ1r+Aު!Ꚛ.xw(z /HN;wMlW_xMMM̜17UU:$i 3a|˗/̙-SVwj湝8q~]vQ}KmW&)oйsxcyr??RX U.v$+(d~A(6(m319-k9*.8[nŕJ%>2vffF_>sl|lJGV3< ̩*@oEQ4en@1$4M;rEp[R.]IHm %˲L>ZلaͮEd:{rA g^ƍrvki*@ @BTOl6knn kIPG'NX+X ;ӝBro,Y۷oUY`Y&ԍqm* /^DM2}6bdH;Жcg|]Q^y~jjJ*ljjOb9! };+H-޵kIrcǎaX@ L|\T;,8!Repp߼y$IMMM2:Ef9n8Je*O?,_o)pïlOMM[(s\xj###|4_aJ#0o1'jr700,YZn J rΝdG錩IDAT;RxoiiN%e5ˆ<ۦ*m\(l)R*dƍ.ν*'''-֭[K:$!RJS.mޅ0f}f),6qh-ex"6,.DP7gi~~Ys?я8Qs ]('ITFҥKInZ8w8b]]]0& /qnu,Dit#ON5PT`)2 V*P*͞9sfrrWN<\x(?0?3a X̙34wkwСlǎZjБ}^/eо7ndlΝJ$ ժC'Kd<8T?0TdOGGG׭[QE-a4: RbwE֙CCC,$IgϞ5CԵM$lˮ0 y K!:#=x"`A[n}ZyK&x"!7+TUr/_vDg)Ţ9ʣ[D<l6+Iҕ+WVU |yUU߿{ <93wr8G%L"RHTiv%p+Gi߿ߡƴx<ߐNŇi_yhmmeSp(uuuI9X-Q؈j\۴iL& /LOOCHAAPXq1p]ӁrBp1>gjk߮{8WUիv {HHSZ+ E]˛WUT\c \(J(F"ݍD I4Q46.PW~)r WZts(S*< zѼΟ?-!EUb1y;-5;C!"G/ RGGվic#GDDރ%WP?dft8=zjRt ga‰*Z`r4eYz<˗/#~*r$ASCdzkqR AVqcG쟹9}}}v 3gUUEQdsDdA_ޤnOPQpDE333ȭ[~ǖ)Ju2PKK e;w%I %AnpttTu<7m7==}!8l 8;,X[nX ֹϷ}u9LIB頒IV vJC LCTE|GHZӴL&3==M*= /K~٬sV"xf/eJRpy…x<~]$mj[T804FOg 믿~9s TJKB汮jnÑ6Vx-BDڤHKP(~T 3!Kd}l2m-cn`3ˀN6 ÙLFQYĶ{Ç8<dBx׮]SSS@jhr/H4MCk7aK|Qo ^}Up~,#YFcHgq{Iv&sG^33UU1ϱCx!Tֻ[Nu=H4LZ$̥3P%Ğv7۷u欽D"JʲL9۽{76Yw)yeٍ*G +}fմLժ3v7vwwwuua=*X[B`j eYC4"ظq0aI  0rL&#b8F)CH|QBQse ={2[>G"QILz&Yu Y~KٗB r5Р l)w~tQU|zMP 5ͪϬ3 P, KZnjz-ڊ=Sv=tssshU ΐIv6`[`eIcccuw߿o߾iIcn"{(5Axappѥn u tiC-]U0a&\:Ք[\6o W( B+y{i|ݶf"gu%͛B:::V ֙lIhW*Vӄ YSx^D(TWV]:XZ~Cڳ,@VQ{<!NdYn_s&ߏj#] zӧOS{ r_6p$z j q6=] "J[TF. S?ZZZ`zTUK!L6]J#KPFvmÍj?Ѝbzi>,] t=[>zne51~?4a.;:| !z!>7o|@%!RX4x 8ϯa[(R82=x{zD}8kϧR)[ &+&ɲF݋?5Ξ2H^^Ch Xp i[r9S4{Y[,}+pcz9kaF8ZT*OH$DQ;nJ%܉ _D}]K$I###eW`eFippIonNKK Qt:m* :Kvww{N<_!9_5$g.=<.c> /uZ}A__g}i)}t!>r!Ν;gptZ'QmA4Bqd؇pgt:J._nv]\&yhѣ$cB$Im{8?EƱZ@ 0 ˲CCC=Ç5Mk&r6}:-xܹsd2dr,IRTZ[[o~x*^wceYn̮BSNB(i&oۺJRT{ ^ pN?9'r e^ â(8uʕB@]q6M&O/ B rݏ>qD}b1yLFƝ$IL&=zJd;v ]Tϓ?ϙL΄D"a !l6ͶZNϷiZ6 &|E2;; 0:Z-(BheeՓ'O*9v. hC㦦TUԢ(XZZ20g2e#,˒$MZVJS#GC0 !>q"AӾcYP(7\B^Ӵ``TT/iVFWV;2BDQTUʕ+fPC333U* 666Z(4榶F-|>_6© #D"Sf폜A7ݻw}7==l&Z;eMA9M̍,,WU;___yb`kܿoNZm}qaaѣzccSȲIaTUM&ξ᧦<h&bR)˚SZR޽0覄1^ZZjEEB 0, 1>|+DR)>|XUUAx_^^ow}ւ ;;;.oF7Ǐ{"^e_T_oy+Ύ'plooPeY:!B!IԉEɲ,˲! ( kkk`01Vw%ܼy… T*۵,"HٖeG3L.PȮ"MzimHiЉo,{޽! F=ǚZ-I* B.\&P lnn]Jf S,] 4(|>_ToT c믻|J?xrr^_:hD͛@|z!799iB( *uo7 /Lpr-OE~!x|sss ĝtŢWw˲ HR4sssX'qL&W^}U[[[  5D9ycm{FHt:6FakqΝ;/~ A?ՀqCB~SѺ=B'.hICya0 RJ C X ~B c! ku滻RI% qgΜ0 S槊̽Ï4MY0RvP`k pwٷz+H@RVu2ѣGn|.h 2&1Bz%fGƍŭXUUǾ+iccc+`BN:=PKB֜ŒP;QL?gw֣& (O*Am0W¥oOs#AӴ7j&Pvr M5իWh~ѷN:6ԡG{ePG$ EQ@O>cgL&Ihvi+ѣGMMn}ȥK.]d$Dݹsnb{#yj$"@ H$R(6/Ƹ\.;˛QFFآEQHmmm5~ߺukl@ERU5H8rŢIfxqqٝ)BP{ 䡚☟'^tX,Dhoqh}}}W^yw:dQsҒxPݜt6>|(*be/,,qȈ?G=`[8,//2!DQ9>>>nDv|NP(Jr5sF[{뵵y]||>OYYY1;qN70}eYINP(L&STP)a0 JWUU8`w 9 d(WݶER 8E)Jjlr.J&%1o'r$eh4 ϳUSE^E!F|D"A{`}@@իL*~i f/o \#N> V) 0 j5`J@XY`4yu #Ǐ3 B12uan޼LwP@!CӌIO*n;;;PzKBbQ΍@ +P?OPz'˲Tӧc݁$_!teڭcNL6ACt"I:kF.jk׮5%>! b( ml+=&&&yX,^~̙3tBL&!<JN VWWA]#!b*z lׯӣ1r;;;= vJPhC;^adh. `$S?vQu[Q[ K>66 _W`5Gڃ@ I,X,V[t0 욵<g[{9X={<w‚++L-j) $B*Y|>OÖQFGGۈKOxt\W?8QRU+++dMjyi֎ɓ<߆aYi|ZUUU庉a]^z czBqdig9r!#@יiR`IBwE,k׮uըr孪>|4\.@(oM333Niګiq,Al6O Мǵ 5~MӨKN[oiF(Po0- zAn,ˣ*5$xXyf{;Z!HwUU5TBuںV&ɋ/FѮfsNKr?h1I/{Di駟2 -!.ӧN8mxNZe}_}ꩧo~;WO3 띊G=ma_Wmnnnjj@'?ɳ>o=3ַՅ m7?3 /tZx;KB 0IIdIENDB`gav-0.9.1/themes/naive/plfr.png000066400000000000000000000142411423175241600163450ustar00rootroot00000000000000PNG  IHDRh4(5bKGD pHYs  tIME$w9.IDATx]of҃N퉗">0@Zh9A cF#DP #B8ua+Ht$-ْLEZ.]zYCsݝw>Ǹ\8p3U-Nש~? ۽CP y# B$I" nѣGRڵkn";UU)|M[z̙d2iƘ1~^xAx^7E |7}B!MӌRZ(Μ9'ܔ$IU|>L&AbngŦ I ['BիW;lfRR7222::^>#x<1Iqyyv/,,`]HBH!$2S@T* BAU.X__o077&A-AR:22222r]EQC*! | Ԏ)x<oooWT'NLNNʲ1N#wаJӔ`0qҒo/ZݹsLBop;bX2df\珏;(^{RiZ$/|M@ƞNk_ \O2݌5])^WUU^(\.z&J&dRzYOhuA>é)$I^v scgg^8T*OqK&T*: ni~e@eYw0kBB++++['lq UU5Mu݂ B{ڗ|>Br{mgjBLMPJEYZZyQJ*,íHN8!<<!$Vy0)l$b0Ɗh;W(-]~f~VZʕ++7Dd/ztt}d hYk׮1޽{59+[5x^`azzu]mGQJs{{߽{xORеZ iu\|877bJ1|P((º{X8SZ^^E)L h޽{XΞ=Ke8T]hS!EQJRtN)裏dz*,˺׵Bx288踜ǏglI L?c[o5qF}BӴ]1k25n)f X>o†/JYMX`73@"uE4M40H$ ݾ}R;~4%8wLI F:~?0Ѩ㢚qÇBnj۳<@3#ejׯ߿߄KrZ\iX &'Ooyy9˱!B)4GVH$iZ:OP9Q!8$|2Rɑafcc lQ]4,^yZ6ԖL&4w-,˲\.!2)166FcccB!:8\OWY#|۷o3|LMMQJUU5!9r)Qø|!ыhk_|ſ/>] Lq2STEQ"SNǘ_~Y(4-T8nr(Ni u<ƃy\.'FА-Cx7!r̮ DHӴoq.rCT_QG鴃PCk[B*04 åR Ǐ7&j'$I=zᲱb\"`^{*mFlb~?xeeŎڢJjc駟6ݾr}v#V%KKK ӀdjZ8\Ou͖H$bf5G\?=d4,%Io5#vwwډ )(S ȲfY2X5@̟( E]џ(^\.m*y p9AFxBА ~RәF21P Yz]B2$u]/'20###V.GZñc!:8. s뺕>u.!èk'@/<}eM]델rW(ĶWc\wP(Zۺ)3Q*UvLɊ(P 8FTXs]ӴN|>o2:ps!SvW 囘2Xh -!ԩS?Ayq%HDYѨ V,k}Ԅ~[WqR`dBeyUp<I(5Qo޼ɎᤸIRV| clї!aKJ `̗0UU6޾ˊ}  WnZa艉\XOOiNMM8m<>d9Ih<D0Lr !t pFJ%+fO$R S#QF;8[[[f2Yy(2eq};7 "+Rj|al<b=5 j``5zI R$;?Bhww$IPϟe7DAU-^( N`UAs7=|նRJMMI_LNX4HP0ĺ7aa^.j7|:4YYYoX&hfhK+͕mllȲLa념\.Wc4p BFKuO2;,%R hQ]EQd2uD%^jiyy9F9t9SfֿkVPX,62<a=؊ ,+r&qffRڊZF@#G7 ǁi5v?#NŌ .}Q,%IK~\֭[VZ[C3@oo/< B+)5L LYIau_lIJnzS"˲eq~WFgKhwa~0=rXez LOOTPLqXyiMM{ 16*D"Q# @kܾ}xq߄ -fz<=fJ)A{o5~?d 1(b^Ei]bPm+++&xCc4 K$.]2jrx<˗/' 鉉NmL qȲD/d7ǁyuDڀWF1Ɠ/Kڸʕ+(d2b#Gz{{Y8ԩSnr@)K.{0QxbjX=2Զ3wvvjU;Rl6IdB1}`]@H]? $J8Q`y筸B,?=|b^b/x 1\~4 P2WUF :XlnnB~W oaaa_sssХ_)ŋ[&`U;v 2$FĹs nݵ4۷orn"d2Bu p8iZs!X,BNyⰹUu;BCU+Ii>}B;Yy*#ˉ؞]diy<(X{g6lbvvu;=P. zY!z=!]fO{a8Z[[Ԋm ˢ(bt +chh K<{$uCĔlooU tML54tkaG7S&ܧr!>3!& j yT6٬1 ܹs,{]I8xlӾqx<p?/~'?q\:t"`sYń@ ~ÇG]Sp>rt]$iaaѣG\.766Ўp@oo*!DUUx<~WOU]34~3UUM]tiqqё;:cCCA3g:*`}\zc</qQ?}Y9@?ʳI_!9_5$g.=<.c> /uZ}A__g}i)}t!>r!Ν;gptZ'QmA4Bqd؇pgt:J._nv]\&yhѣ$cB$Im{8?EƱZ@ 0 ˲CCC=Ç5Mk&r6}:-xܹsd2dr,IRTZ[[o~x*^wceYn̮BSNB(i&oۺJRT{ ^ pN?9'r e^ â(8uʕB@]q6M&O/ B rݏ>qD}b1yLFƝ$IL&=zJd;v ]Tϓ?ϙL΄D"a !l6ͶZNϷiZ6 &|E2;; 0:Z-(BheeՓ'O*9v. hC㦦TUԢ(XZZ20g2e#,˒$MZVJS#GC0 !>q"AӾcYP(7\B^Ӵ``TT/iVFWV;2BDQTUʕ+fPC333U* 666Z(4榶F-|>_6© #D"Sf폜A7ݻw}7==l&Z;eMA9M̍,,WU;___yb`kܿoNZm}qaaѣzccSȲIaTUM&ξ᧦<h&bR)˚SZR޽0覄1^ZZjEEB 0, 1>|+DR)>|XUUAx_^^ow}ւ ;;;.oF7Ǐ{"^e_T_oy+Ύ'plooPeY:!B!IԉEɲ,˲! ( kkk`01Vw%ܼy… T*۵,"HٖeG3L.PȮ"MzimHiЉo,{޽! F=ǚZ-I* B.\&P lnn]Jf S,] 4(|>_ToT c믻|J?xrr^_:hD͛@|z!799iB( *uo7 /Lpr-OE~!x|sss ĝtŢWw˲ HR4sssX'qL&W^}U[[[  5D9ycm{FHt:6FakqΝ;/~ A?ՀqCB~SѺ=B'.hICya0 RJ C X ~B c! ku滻RI% qgΜ0 S槊̽Ï4MY0RvP`k pwٷz+H@RVu2ѣGn|.h 2&1Bz%fGƍŭXUUǾ+iccc+`BN:=PKB֜ŒP;QL?gw֣& (O*Am0W¥oOs#AӴ7j&Pvr M5իWh~ѷN:6ԡG{ePG$ EQ@O>cgL&Ihvi+ѣGMMn}ȥK.]d$Dݹsnb{#yj$"@ H$R(6/Ƹ\.;˛QFFآEQHmmm5~ߺukl@ERU5H8rŢIfxqqٝ)BP{ 䡚☟'^tX,Dhoqh}}}W^yw:dQsҒxPݜt6>|(*be/,,qȈ?G=`[8,//2!DQ9>>>nDv|NP(Jr5sF[{뵵y]||>OYYY1;qN70}eYINP(L&STP)a0 JWUU8`w 9 d(WݶER 8E)Jjlr.J&%1o'r$eh4 ϳUSE^E!F|D"A{`}@@իL*~i f/o \#N> V) 0 j5`J@XY`4yu #Ǐ3 B12uan޼LwP@!CӌIO*n;;;PzKBbQ΍@ +P?OPz'˲Tӧc݁$_!teڭcNL6ACt"I:kF.jk׮5%>! b( ml+=&&&yX,^~̙3tBL&!<JN VWWA]#!b*z lׯӣ1r;;;= vJPhC;^adh. `$S?vQu[Q[ K>66 _W`5Gڃ@ I,X,V[t0 욵<g[{9X={<w‚++L-j) $B*Y|>OÖQFGGۈKOxt\W?8QRU+++dMjyi֎ɓ<߆aYi|ZUUU庉a]^z czBqdig9r!#@יiR`IBwE,k׮uըr孪>|4\.@(oM333Niګiq,Al6O Мǵ 5~MӨKN[oiF(Po0- zAn,ˣ*5$xXyf{;Z!HwUU5TBuںV&ɋ/FѮfsNKr?h1I/{Di駟2 -!.ӧN8mxNZe}_}ꩧo~;WO3 띊G=ma_Wmnnnjj@'?ɳ>o=3ַՅ m7?3 /tZx;KB 0IIdIENDB`gav-0.9.1/themes/naive/plmr.png000066400000000000000000000142411423175241600163540ustar00rootroot00000000000000PNG  IHDRh4(5bKGD pHYs  tIME$w9.IDATx]of҃N퉗">0@Zh9A cF#DP #B8ua+Ht$-ْLEZ.]zYCsݝw>Ǹ\8p3U-Nש~? ۽CP y# B$I" nѣGRڵkn";UU)|M[z̙d2iƘ1~^xAx^7E |7}B!MӌRZ(Μ9'ܔ$IU|>L&AbngŦ I ['BիW;lfRR7222::^>#x<1Iqyyv/,,`]HBH!$2S@T* BAU.X__o077&A-AR:22222r]EQC*! | Ԏ)x<oooWT'NLNNʲ1N#wаJӔ`0qҒo/ZݹsLBop;bX2df\珏;(^{RiZ$/|M@ƞNk_ \O2݌5])^WUU^(\.z&J&dRzYOhuA>é)$I^v scgg^8T*OqK&T*: ni~e@eYw0kBB++++['lq UU5Mu݂ B{ڗ|>Br{mgjBLMPJEYZZyQJ*,íHN8!<<!$Vy0)l$b0Ɗh;W(-]~f~VZʕ++7Dd/ztt}d hYk׮1޽{59+[5x^`azzu]mGQJs{{߽{xORеZ iu\|877bJ1|P((º{X8SZ^^E)L h޽{XΞ=Ke8T]hS!EQJRtN)裏dz*,˺׵Bx288踜ǏglI L?c[o5qF}BӴ]1k25n)f X>o†/JYMX`73@"uE4M40H$ ݾ}R;~4%8wLI F:~?0Ѩ㢚qÇBnj۳<@3#ejׯ߿߄KrZ\iX &'Ooyy9˱!B)4GVH$iZ:OP9Q!8$|2Rɑafcc lQ]4,^yZ6ԖL&4w-,˲\.!2)166FcccB!:8\OWY#|۷o3|LMMQJUU5!9r)Qø|!ыhk_|ſ/>] Lq2STEQ"SNǘ_~Y(4-T8nr(Ni u<ƃy\.'FА-Cx7!r̮ DHӴoq.rCT_QG鴃PCk[B*04 åR Ǐ7&j'$I=zᲱb\"`^{*mFlb~?xeeŎڢJjc駟6ݾr}v#V%KKK ӀdjZ8\Ou͖H$bf5G\?=d4,%Io5#vwwډ )(S ȲfY2X5@̟( E]џ(^\.m*y p9AFxBА ~RәF21P Yz]B2$u]/'20###V.GZñc!:8. s뺕>u.!èk'@/<}eM]델rW(ĶWc\wP(Zۺ)3Q*UvLɊ(P 8FTXs]ӴN|>o2:ps!SvW 囘2Xh -!ԩS?Ayq%HDYѨ V,k}Ԅ~[WqR`dBeyUp<I(5Qo޼ɎᤸIRV| clї!aKJ `̗0UU6޾ˊ}  WnZa艉\XOOiNMM8m<>d9Ih<D0Lr !t pFJ%+fO$R S#QF;8[[[f2Yy(2eq};7 "+Rj|al<b=5 j``5zI R$;?Bhww$IPϟe7DAU-^( N`UAs7=|նRJMMI_LNX4HP0ĺ7aa^.j7|:4YYYoX&hfhK+͕mllȲLa념\.Wc4p BFKuO2;,%R hQ]EQd2uD%^jiyy9F9t9SfֿkVPX,62<a=؊ ,+r&qffRڊZF@#G7 ǁi5v?#NŌ .}Q,%IK~\֭[VZ[C3@oo/< B+)5L LYIau_lIJnzS"˲eq~WFgKhwa~0=rXez LOOTPLqXyiMM{ 16*D"Q# @kܾ}xq߄ -fz<=fJ)A{o5~?d 1(b^Ei]bPm+++&xCc4 K$.]2jrx<˗/' 鉉NmL qȲD/d7ǁyuDڀWF1Ɠ/Kڸʕ+(d2b#Gz{{Y8ԩSnr@)K.{0QxbjX=2Զ3wvvjU;Rl6IdB1}`]@H]? $J8Q`y筸B,?=|b^b/x 1\~4 P2WUF :XlnnB~W oaaa_sssХ_)ŋ[&`U;v 2$FĹs nݵ4۷orn"d2Bu p8iZs!X,BNyⰹUu;BCU+Ii>}B;Yy*#ˉ؞]diy<(X{g6lbvvu;=P. zY!z=!]fO{a8Z[[Ԋm ˢ(bt +chh K<{$uCĔlooU tML54tkaG7S&ܧr!>3!& j yT6٬1 ܹs,{]I8xlӾqx<p?/~'?q\:t"`sYń@ ~ÇG]Sp>rt]$iaaѣG\.766Ўp@oo*!DUUx<~WOU]34~3UUM]tiqqё;:cCCA3g:*`}\zc</qQ?}Y9@?ʳIOq3W|;)V9YΒzŹ}5yMO~][fg?{:%.QEg׍`[~ic>] ?~{Qi*z,_S2tAců~dh+ U_WȒV~ֹ|0YMu7 }=!Jcv{ClÆ nV;$ϻwEs?O><9u[*rp΅2mo{[qa%aHqʑ{?J^駟^ E(>(wSky =裏N~FiQ'>19>я_R:~wnƍ{>@iRүj"zWzگwqwXF׿l~|2Ʈ߱9.| 's8&'罩`>)OySG))]:w_#ַuG?:/}i)m:#H}o@5{w| -#dƬ1;'..:[WnW%^Toco+0t>wc3oB7>Ŷn[Y>CvZ _dO5W~+G^a{kǂ~]+_rhЖ6)zի|O^\~_;n"7Gʫr{g2uy^oX[0 }sS>gi~2'*?)̸v%b]vIky{&'P.Ǯ!O+OFN1~u\x_:U`ta4fr^)`śy{rG]oC_=fav٩2_l?ւ^քI@sr!6ً\"Iйo}+ 6@J ]1[@6ݕ|1 (R>4e'߹%뮻&C7 K71K9cw_? H!H[Qwx#ڔ򣝮(3IeEz쓚 "a~us3+^040'7EXAu["dw[+Nss ԡ`-ܜkwcg>39x@:Ÿr,%/)'#j i ]oG쟁5<|#>.EgB3g@zڋ,dfH^#݃={׼5JG9R>}~o{ۦ5N>oS2 FQxeWhTgwdD;Mm zr)u'ʇ^(º t2 U돞=0Xwm7֧>ԇ6=x8aد畆J;̃97` q }s|e=j+ez@UHz[ǘS[ec_[F`9nx/y8fz4o~]˶t+hLM+j˟g?Ʒ)~^?;MM9{1W tAg1<7;'m?E}\"oDmN ĺu.+"8꜀Q.$W}u{=dLڎ[$'֨|r\`EIv"N8Pۺc\c9Ɲp|\A+/~w.w!of n"k_MR&];7}8GUN:oNt)9&zf1+-p=c?U`Ǚ]ǀ9 ݀|0Jn^"8&lk:DO%a%/Ƽ?.acCD֪&M1Nt4wDziqy{z捥rA_#@M6XT7sڭo߈oxa^E^zKctq; H PLʆX:!:@G ie05?oܸASֵ4!VDP>C@`&1~SWч!Tv?3p9i9P KX~Nǘ܅sU}C#4JrR_}LQRtPz\VgJk;9Ʈ>se/Ҏ!-]ݔٜqԢ>85on#AW'"B 'HXW"R*V~ʈӜ󒯡ɡFڪ9o)Vv)_wOY0{^7>TEr\˿e`0!JcdZ1: (^Lc%3Rfy[ޒ~ƕD52cQ*T>'SOM{u{؟Chm>t^ \&``W_.;. "q[${lcc7ɟUviS4&_onJ0JI& Qw׏C0"Nw[d@p_>ssϘ}C?)hUdO}) F¼nLC0tzOx"=2q˚N!ٰ1uȢ?,Z}X:k]X&Dφ~SJ@.IS/ $>-yl[Z.(C%c +5AetA x허HP#25A< -}sfx$1 CY SU?#)  FH[cspP:)_Vꋶ`M[ƅ'tR:ʑN 4nODeuwZ?;ABY~0ǯnyg*ɡoY2u驁Vl}?""AƋ7OYʻUkTGDWܠ\pENy2@%pXٴ^>[ʾj] ]\n*@ Z?Q ?bUwM &NzKֶ#}zwľ+YLoy`rw&9׭IUz ym22ӵe`WfJ+???U.a=c?u`Y$n= aOAO4'Vz ˌ@qn^cy{odv]Vtߢsr/]yT)dQ]PDh}Yv" /| "\)R\6E-rCoLRBPFD cRDɡžhM* 8|y[3iוn5 }2J[klKi///j᝱?C ZIRe77Dh(9/1֕( 5 ߊ*lrxcUէ="!‘w߽}|}J}GU)Ĭd4wq}ۿ}4 Sd;yc4KcZ=va<֖J:DGk~~{9̗*É5$U2u\޾;F/23ls|WsM}MD&#'~nv)m,9$'G]g뮻&cOyrMVSJڶO {]N0>u[ܢO<1}*= zg- aσI3l5y?W~?h>EȘAL!,@aAnNI˳qXWjl/ˈoao]urEO`p-jyf.' !nT!p冇j`=ꨣҷM s=Yzq]{mDR@U}ۗ}^;pI>SCOxh 88`D1qjdY8PsvK}ѧΟy;9/uk"rOW#囀w""t(UR8;n0/">=C~?Oф8U{\xB6muTiw_N YC S*pC 'ÿ "}MHqEwmzjrO0dFNus٥m?܊clї(H*З Gsq0 1TN!Ǵ06l1+9ֳ0L),*iy)9SȯBL1?,Z肱7uzJGu51-)iREΓIn7\ӴK\CsMFڒ+QM]z};)Szjj_?(_y}U=R?=*Ծ(4/r8IJ@x:shC[҇8\}0i[ppZ9 :/jZ0:XGGR-P500}HqvB-&~mk|7Ek Dr3,Ev`f̭j?÷Uu?Oz]N9 Ըؤb b7_?J8>u#{i enWeX?AS sUF>|R^e ]BJ&c\N=oA]a.NDo~pz._c?E+_ ~lHW}Sǐ[-VtT:&`Q_7oؼ'-m.1ra9kqSg/LVc߰[<^6ldj{  jo( M׵5&{,޾0JVmӵmfql6a}ւ#0SI 裏NT=Hh lBL1Hsk^) ru̕xؤk۵_Bn+};.ȓ[T/ܿ2ƶ? /"\]EZ?1u1g4wU%77ptͿj7Tb|O%=^Uu<\FwXKM<ʶK]8d,cߵ=m025}wʼC5G90zX/>yR>Yl<׆x7ޡk&n#bÆ )H0v ?ݦW,͟9i:ȷA#' 0C >kwHV^{%R.߭8{27l 2LL%,Z7lii=0/nqfեF=/ЊcۛN쟳t }"d)]ciX: mJI@R^e^asȕkN88#SF"l[tq/9SNY]Qcݾcg̚~]ˍ7n{Cmg]K`<hSI}yhj;oSa-OeчXV򿺾L!5`߾%6:#:!\kG*w'{Z@ߛ7+,'qe$ kq-[v!=&2Mt| Ph?g>8`UvV/e0q5oS EoOهt)׵yט:%Bp.v`f8oZO1E[,Y侀K.(3̔(kK1/֚}X{O5[j[ݐu}YX ky<LE7|'[ƍw޹qS oR@kʾ#G< ˊ ~IENDB`gav-0.9.1/themes/unnamed/FontInv.png000066400000000000000000000210461423175241600173130ustar00rootroot00000000000000PNG  IHDR6tIME v8 pHYs B4gAMA a!IDATxeUb``wDBEA[Q11G[1Fuf9ߍs7ַ{{lqӋum[NwS]߳~,ݻK|x^W~k^_rc]jAT/)w7 |+s kq+_8C_WSWb}n͚0aˆ]GL0a„ ?AwܱxֳU|K_Z,{WU޻<3?)p+>N0a„ Co,^Wo}׾ 2įE/zQ>[Vqԙg?٬CjOڎq͵/ ׆m~ nmW3Lo*}կ^r)^( [Z|_/PU8g0|(~E?EN+?zֳg; za,x3er M1H_ř|ں;|_;?˾.>Ou?zh\>g}6lS_C_nV.6mT;@Y;ˈk\ypr }~^x0EhҕTGH?ZGd|3ϵ! {0~tDr4{xh~A#Gf˕u5Cۜ3o;JQLJD?'7zc_X]oHǐ}eU <|ukg9ceƯ~2399Α=c@6l(N< Ox]Ny-8׹Uo~ώ'ߝGJ&?er?xFy"?ʵ_:?/7:;a<1biuQ!R|--b6լQgyk կ.m;$m> w9k&`o}[˨\*9yg P˨/)>z׻x`"߾׾V\-Gu(coX֭Y {Y>Fd_3̲&őGٹ)G׿;}%F 0J\.vr}{ ^cwo<7OW#b O{J5bNstt]{~y խnU<-D@V\B*w7i!8c[[|Vw/.E̖+ y5mρ_m׽UtfQ~Qv,J.Hjoeևo%XNuo]<(?xXg졪z/|a;;H;U򐇔X=q{Q:pTa笠Χ?tl/⤓N*coەe!??3&U^*'?lo2}e{>g7Gav]q ^oކ\o{{>_WO|4kX?"atPWdtD`.mҌfMt'4,7~KE7uK^r %~fmb?]2j,*/B$A7E1"t;c̄6#'?I#o~R1o|cM)OtA  8x{޳rcpGJ"2111C cMY靡i{.^c]֝߃=-yx9LO(S_@&ZS;2 ?i)xSf;|g@"}lӹ'ߝG-4):L?5C׵22cat|\YWƆ;2X "&,+f4-m]qk_0F+bZ~gs a9Ϣ,U )}k;Jh7Dn*X+~/Xf AMP.xIZ7Ki7ܣH 'B S+l_ Kz׻1_Z6)=[(cUN1~W }eq':<^b!J/{ӛT_ܩ_C]r㱥}{/7u0 Ku{_4\I_d=PGae^EQե[T.6p(>V>Z Gc"c{H\*BKUjPE1oё~ZM/'ݷ|J;ܽ7tӑ>|}a~ӟƟ o"Z+߭eVߡ'pBI+њw} pQ|6"P 5V{.=ſ"Қu ە )G.H_9`SCK{c|O8n{Sc%E8t=qjQ1bO[aQyTL׎g)[ʸ>Sf%.R{%%J=/1LP\COїa0+}d~Xe`s3ϻB;A{t ` @]fjA+2޺zDLWgՆy!&2&a BS%,gsC`))`P#L_'|cJPy#M"x*mڴHo9ucx{nnv3"x썫~lܸq^:XhCWHj|}ƞwK_-~7D*nq[^Rzh;y/Yځk`q!li'`:f{Sc682jh.FE݅f/34 {"TBRX7э=4+V﷏RJ\[썪 .;Sz7 u AH!wc9$aS=J a)W imqht'KRTAϥE2.GgC_LJ?ʝ#vǥ}tD1@6)u 1#kw; UamI[]9'G1?9ÌyG=+((G-r1Z'$Xs/"?vcaee*ە{Ϸ˹ZF>W>v~t-yV4a„8ByYAa#>O"Ljx;M`HIæcLC$ $,S4!xe;// BGuT)xyA`;.JTy&58E@PfCЇ6 fu۳"i㲏gU MxhCthyo]5=`vl0Mv{^1/2$e(NwM@iqД~VA p,YuKb״˽EGlذ1M^"J5ȥ?A?u_U~}<%\ D{SP2Rq93a$% *Mߟ^6>O&`yde2+epG&,#V4z>.UEEeiD`<2y"]xv3PH/A`" H9 w'@/^Fr3l@J['xb <#26>RB҇em>я BC H1|c¡P*8Åse60 ַ6x>/_b{?9 P0hU:arm ocg'=i~ Cj!|:t(Ma{ٚ+͐ 4"WD18/y2'SwdA,z?;|&L0_JWfuk"D0Ty1= (JLA&1h HB) "+;P8`8]F |9X/ª*C1f>G+G; Lƙ_ؽM wqO{@":B; -ggvƂPs9ԍaa"SvhNjewIelŁ˺ /{Vn/JV31rW.ʢ'qJŴ~}ph[96~`40+_Li[{Ly.{DDC.r-"Mecy"ݾވnsiʓ;=n)(xJrkѽ"LV)nHȴ͟.or>Hx2]:f$e5є~PP>˻yDWkɧu7ҵ?P mݚ}N8~JXP陘~z,=Vw(1Fʇ.vuvI.~;/k{w@|ຶ6Ny+5 ~v?Ofo6_~/;-UB*Ws g{wk0A^:l{7:Xcx Sl3|Wѹ&ƄgdDOJ |(v[gOsOӴ{d Slybͫ cy裏BY?2hnV{YX<Zt?Oڧ$k}X{ς28"ς,a='Ud],vi)Dt #}~疫 @6;ܭx1a2@%Bhv9x`pߌ9H&889,g H2Y/EC\E~9<9Ͳu|pARom)lr1c_bA^DǐԼvie{W cOiRɇ9j:d"jGUn'n)Ƅ籶1@QICPbw ? ǘ }?bk5cb֞l}DP͐5;&L k7|+`hPKi?-7"j{D6o4V2(sy@ 4 'ZdQB0A,\I½';RzSkۻ~뮻Z֯Uw=UЗ̛B:;7 /$!u^X2>A璶tHܿփ޼8;)_RYDZJPt̻:  ]:hK!WH٥6v]}Oxb)s2x׽#:8d  r? `.)(A}S¤jC(+)DUC?)ER:)(dgivذ9BZy9L*" W];Q6wy:4C'ߟê  OccXO2?/I3 ֖5(UT6YkE`2Y æk^>m\rlܸq“9 .=C5vH^0w_H)mCda *2c=#l>e>U /΁9mڗFiOj?/*\xށ;˨PM4wTb*Q^Ms,AHiXGzU. }dzcUϩ?}2cT>^@)}F_ѵ6zI}{6l(SZ29{M} MsK?Hw.99]{ uTPo['u{ ٺ}~#zv: E)([B?Xw ;ڰ RxuQ^*U]U0ZLFYcXu`MA+i=0ѐ.?!D} /mw:͚Ͳ\z=tֿ*s}tЄ"/呐k~r:\?>54wYhXi!+sQqkNް^ &7H!>eMAy^QaƮ߽zVi'9i¢1zl c&轤qn߿ӾjyR3Cp95Kz%)QA7$X8؊5J~dC)]z"lC'S+omm"2)9MoN Yk[eь?}ٷyA7L}Y5_$+ъ.I ~5a(>3o 4L̴kTFO b/NW & iPpJvT |U?mζ|kَxW`Aj)fDeS9_=ϩA՛;{3é^7Ttky*%D]Z̠l.yh'p6\SR0N]رFܦjR?i7JҢUG [=BEc]WJuL0Uk~{7C[pEJ(o++.@͞{)xԸ21qj]UJRo{>'Gaç'/{x`Y-S=f#~6L-Kvz11Mu{sJh.va#ok\ӔxbzxwS oa[_"QJjT4R'u82?=NLqQY5m8bk&VZ쯔#"/<jQU\]0BlE<p 1ӧi ?j7g ux(S\6A)brϨ?ݤ>T!j8/de_jWt0Z\.嵾.]'>GێBxuj'MAa>ۅ0XUʲVx^-w|Uj\/5kT9$(尝67xk -GGj([c/Műbv\F*PFjvV/=ĀGlXCَLv20VƣPonq}\?~-c,+V_I`!x& Eh o)PzTI[ZmW'_~<.:EҡQ窄U$ .'پN>)UlEQk' Qaκb|_?j|_x gWEjK2mp k_q LV"uae@ֿ_I> oX' *5˺K(=şs2|\C/~WD2=,?g*FڛɻScW]4qEc/T8ɭ8]<F!k#{)hĠ'}*XYzLS7?"=$,o4?']G) WGJuG%nNUu/Ch˗#Zin5AKép-kq=iE~ xxo%*NJoa; ?B|K B/]hkYM%A xP\j 2h SRM*V5T;嶖L"XF1eS3FoXkBYM%kփN*%PZpg#N~) x/>SqDg L/gێ p4? ?8xc{H4zK5_=U*V72xraPu@'{㽣<[3½xz9u7ƜJ9f}8-dp*jl1o÷Ƕp{oS-{ci!Ֆ^V,+ƮzT)q:i:VQ~Q a }7Wp|7^-&X*B[.C>`?x_[U߼iM%dy?l}|ڳf7 )l_>m~snTx`ݼ\mly$#9jA'k{MMH-25ſ>eVXkx/=dj^O־®::_W(LQT#-jAy[_/\?'c (Ug8yk?]>.7)' [ _oŨLϖLj?b_ٯƮ Ď4qµ&k_1&wC}k[ԇRKֵMv> ^H_KvtdtI$I I$IzshP5X_Dv)Pn:ĊAT*J52mG˙ H4{-fd 9+J(Ytu[D BWH% fQ<A؃#P*Uz @`#hn&uP[THέtWmc9YTxKL1m]D_v] Qyɶ zuT`9F} 7&M..%kQЪLD+u"Z*#7H/sԧT/\X1UsVE*GCҊS[POC WBm.o@)OT|T~, 1R/!)lnbC[9uɆ2-A'&Un㞛Ei/1 Ny-xi?y~t$)S?W+K:WOM I#htI{h@4C/NafeR'COB=#ephyH^X~q*m}5 2ʀT ^}[2 zd +1p@61AVlIl^pvcl,2/(Wm{o)50E rR P_N/TY0(|SiD{B))ؘ>9Ql IHAxKmO=)PA$51nPm6ߥ=0,-a ]mH^m}nN> ru0&Stw?h8k@GJ48yt#'ÿDm*VCJz ^K.O # Q԰ ch˔k%IJkhu npKRZ]E9 Xm1_6l ^MŴV:(2n knЛ*&J(.9sYZjbG QɵBKuHF{E9|ڬ͹MlL=ي*vQjz1@XIl i(e*~SEJxG?=Y[-:H,ӔQ$ ,XfYlySg˾FdJ؋ KS ]Ks0xaQH~QV]r !y@E0W@aƖ-f3{7yJ,< m $TQ3 RA#K^/ ̼G[hBjs{Z3{B\ C@$S FJsmΒffB&(TkBoyT5^$X)Q ŝNE"B,)&fK`:EPZ3 ٩ݗ,kxKU'YenXV+3 KDfSbjf/Y[ u2ԑPZ 8f#)noS4+]Xm} cS7*B 5 O!mn[;z9/0&[U%*fkOi,M7QQHI&4A{ET$+Qrg_i.Oʌ ZxIڹ+)KZX9ZLFG7| {v /(H)j+k RRtp=e8ZbJuZag!5%D1k1ndǠ,5ĶaCxtyOLpʹFCm<=gҭkUo \Öo11  Qf-ݯ YXزd[ha@QʤЩuSXd]mLf$3ꗶg5D7^-Ak&i,ʥb`yV(YyΤ1jYѴ tÃ}j]ŸΨ)ULJyQP|5jj@'{hYMe} S @77}1SϔݪlUـ:`8mPWyzN~jbDMQU4oBm Lpw1uI_ '|Γaj,if8vϛ)7o3.V `ܭq,+y%lHYw#\'C} {K*k;W ]XsGC,;GiYM6߼ Ğ`Bm{st-{OXv)YM8j Q3 5|7i8pIt<W*IG.F"bR6aQ>tĎ&zI\ UAcsJv3l$WN{a_8$0yMmz*VT-0P mU\l$p.H6idRJ܉YH` X5Ɲ$>f,ŷst+}'xBr!}(lǜȳTer ֲ\7Y*w E]ZnGS2lǘ\X+꼏IX8 u#D1;׎h}aASTUNf9<02$e+5Y.anKh[!vQr9+}^BvXfQrKzø mʔ@ks(7 -nrȱMnS62. BWh zğ+jFZ #׼^kfjhek  omS@.EEW%WAG(}&PWQ{f=X@sjrՉE\N̥^KO]q.R^YTn sl-|* A{n|"^؄^]C1F#jU*5(d-+@O`IT;kǛPysZBY5_Fщ;B9HkNā?X^~y̒N}=cio)ùs.;v28W2\zGyx[kx_2\2hGK399SQ瑹dcI|rCQRͯc,ncK_V^5YK4*ۙV~|<5sdy 2i  [Qi؍19TX&l]'NVlگ- ݦSZDn&rUnѽk+f%JFyEpG|*uC#Ljt1xfsQn7#YW[[R,/$?XĻ6r-ʉJ7bʎ[ϑnyŶk"iQ_a} ć%]6 +5Fw6JHQQ37%_̴̇jVLRiuqa74"SDsn`+-ճ#TU6k]m&HRB#q}r[[cX)^[ JGY 9鰅um%Aa4cوѹ,u1*ܛBw;uQ-`5R{t3ks2mdv'RX,4"O*_NҴ|S6rY9e^׼k(r۬%`k6n׼aTҙ|:OS@EM&.@1¦]".TFyGJenQp0%J h/--OHQ5\@ a!.[/l&d599@PA2([*]caϼYndHP"ר-~BJًH!u LiGh4>ekJnzCA6 ͽ# ,,;n-965c|5n.~32F&glN$ʵ6)tQbu$ɧY ǝ146$|. p+VPU;'s۠{45Z{'^qT"4v'6ɘqi3ۍ*.!ƖoP~yڅbKrN1ƷEF)akцU%R>$N{ ĀShK%qdi_P\w`1*Fy@s+|-Tf)`Bk_|/QV־ 'åm)pGyYiUoܺN17;DK{?7ŭ͉]gQ9ywa֍f_S-,t *$ۏWwl^1D\\i]xH0J, IX_^+PtjpwN[vG1m\Z>(?׿y[a=N.jfu̇#<3WLjwZkC +Quaq'LOlt|=!s3^'Ә2OiYeh7oˡsqrǥc`} %ŴTj} *,soYѵ6@Gra%ESkj:IIRk:#+\锎Q u t<Xo(CnWlR9r rQSg嵦z1؃c 1#[! CϜ-2(2 ְBT#Ckt')ou` u*~H'R7wBЋAA U*V.-X@`w Jߴ܆;f֔[AUd١(]\.ZPKIk2?Xt]"Z-J),e4iR7,e;!ltYMkjZ[TLj/~pL0.S%GH5j7rw29xI#+3EET L\Xz6U:ȴRÙ}dInaVU9^|FQ\ĥA -MAakA: aNr o0FRD_/b4[ LizK<_/$b: [~PҞ}/׾'f"]4T,S5CJ$ Q{CAaQŔQG{Mp8Sfe$4) /Ġu O0qB܆Zc2 "*im㎏B*$c_Knvb̾eUo<>(L@X<\|wVGũ&BEyȣ~il5so G69~',iE(sOej~iʋqcܯ<&#aѪAPUNm57M]o|=o AA7WȖ5i<nC.iW8qj~_0:ZeLRSjL*jʿF/+<|pWϽ箢'qJxlMJ1 SOVW[דǝGG%p*!|w|]_jjrۍYiTZ"aN/)Li8ؾ"Laojhr~RzeiH}v?ic<'ԋg<^?TN+RWf2$Vxp+zz?/p'{OKjTm^SԻ=}TU, ےXLZpTe@M ZRȶ*e ltTM?/WO^koαØYeSTWZtHdxnRRl܁ӌ-cc3v:KzG7Tt%qj>>]dU(o.ma14PI'/;rt.~4atVz,͕SyƩñ9ꪺ@,p ܭ5g??piJ)"N(jz;tS n\^' Q:鸝\ˍS"VTеv#^DIJ\cel~L0nVi~F-Zl5Fk+~V1ݍ,S韈'axo3-n<4a묂Rf^rE#;K+kj.4Guil4DSKkߧ(sPw~CzgUPL-Q%gaTMe &Іqm- @ZuSOG"m.]̖3I eѽt+1]Lz67)9 {|$Wp4Y6C],[h*-DFQG"-!seAeN]H-^SWuNnIv_Hrpq EeH hʴsIw圳xv]чU,I֥|"Rnz:c^# RP/򂩉t'[FePNPpՑ͎i$l. 展jNt B P=Bi6SժHo)Xً_kkYT/qq*m |pCSL#[Ǯj]A}z-k}}D͚U#u_4h„F֋'~4ŲX_K(;'= %׷9iNKMzKr8=ex,-hͤIenhz n܀x*b >pm ֍AAByu% ۋXZڞDọF>!.O3kdcf6 r5h1tm O@^6bZяO1E'#P"Q0'}F$#[kg7<#861aH$&tD?PAUJ+SPlï8kuXn "£Q8tk)X:;T&z`>$<^# + q3FoYN[Ts&o Y1'?tlz(Ljm#&WioAUiR\=3kXMl&N;.G_CMz*4*9[S-TߤV( zLn2mƓz(E˾ڙz$S$yu곈O E -UkI߰X -&r3Y~ _Ҫk~1j5Ƣ*X#҂N{]c5=HX␲3 HZ>rɦn[ 'X`-sgX4kTjˢA$tѵ>muS,T4#ee:ƺ普,o2WU$eupgUX[u71?sSmx*Ge,|\iʮ7$~Q~R#D/]_yZ{EUTw_|0TNcSnVm$?J5+ ~cq}t6-k0tv{˷/O XuQu/ӔS0PXr8IpYtaX$X"( Kas:ppZ~ VQySჩS|9+ g]O_Fˈse\r[1Z XR6)^:Mq Q5ɿQR:_ߘ؃;?. X @g1]˸%zj'z홵|5" Pgpj3+r:.]&~;ܘe6ה : š'S9~۬4b*!$qT_Lʒ $@cd9 f MLmx⚈AˤHT&G+:դPoI4״6%m L}JKo,0٭1jUs*FXR^a\,=;Tp*uS1bLLn]YOXrFƥHĹ,ZÜj.qiE_ޡxWKo,9tө-, \'MU֧wQ8<=؞vU[Co8&l*tyn,DFa^? 8{ivoɎ,ߦW V zkp0kZL~!C5v$0e( tiaA^FI-ȞSxsc:[ /RB7SBqUr B̲8/cTRw22کaKa͝Sɠ"ِE0a5tR`^P 0/+Iʔh+- &-WyFM8|9׽nӠF *ٺVj8J9AT$$y" .QN l! bnp G T_I~@dzj~be"Qv<(TK"/y6mtPG}3k~,XهÚwSr<ӹ\/j*S_iӥ_P;:fHtccV2XQ,PHGbpIpvbq@]haEMqU>ZKcޢkrc*(Fu9VL]1[&kf`y͘L%*tTcs9>}X=:Y ='Hpױ=u -ʹi9@-iɯ$f6 * 2&eJإ%T×}(܉x(èI Y*.ijbQ,~.-n-g'{ײ^ 4j\ ~p/n?ypWI6Kq4E3B537qo|ߘm"ʹK -',ȪՕh^# oʙB4|9D]I`ޖX*NT'M<5\Cc[a5Q촹>MjZi&EjwZT HNV+RB YX[b3i5#Rkeɚ(yztmasϑW0WBXTZkLZ,U4B}b]h$dJJ❑,t<4ʻFٚܘIG7;H7߯J/R%-.i&Aa7%Bm6Z{`j,bnCxeDW\}wtkG!#iֿYZ2Ckb60XYN]-nJm\V6&9uRǝv1+S0aMټd +c1G"&:LAn%Uc{1*?'zꚍGh T7[Kl4Ҡ#Xlrܞ u3֣uSgIIE0,کRiz2#IyE,7L!G&uӦiS b=b-@>qtVZ"R}vbG)tp# _ M{.cg$&`AgH+eQ7UN f GitebL5) 6a9yRpP[[iFW%iKA:LlB:lQf$@iÐXiZ9TiW;z*tNoXS#~sm95=Ic0҇0j);wBPtPl/6D(SnNړ1xZU*0}"7SCYiM[ xI ]EbObd<@+V&NէFj*?I+6EkSYm`b/ *N)Us^VjE@e^V6apU4h]nP6 6g( H5-_@Sp>¢ǟYn.56c e$zLvI1L!D ԍkpFvN ~ Bݍo(1pz'&cܡ5W].l;HrB{ЙBVe%nS*?);p-n礃l6e\I _P!|jW¨SW xrAU9i%M5-P&P; Z.\r`$q5Scy ^G-UUleg\9H9o2ס SsB{&he `F!F;G+.T跦ڛkE7;S4f+汿>6F*R6&TT7Yr'}.Ҟu-=DEJdA%tSB.'-"D v&0PO)UiØ35jn2>}d-ujMĩÔVcT &i,XkSyfpr6*z7%Pwu>V' ~)n]`ƀ]r\ O?qۄƜ3n3:w6%ê קIYgDb98'ٽtVds6f*L ӐCU\oe©=ZՅ]Nf<%DM<9HěgAh!!E:,&Pnz`bj3-]cʹ|U}cҖ ϊm7T,ZgQ{'hfNX5lH:e[pN5Hɚ.)mXьjMيQR/ԏ&3W_1H)[ݰz2hy9jMk骫k /Rr.WԖ50 l3 LFMG ΗHpuk ̅˭[ZJR(mLP|~sU ?`uMF[Vډ{t׺Y"0vyl,Ufo:2z^EUZe5<6jchbTK^]Ihj8Qoia#{ST<֊NfjX^r4e aig:@H'T0ĈDTc*]v*V"S\ABP4PȊZm9̊VU/ԩ(7"/"˰D S5xK nS2\-`3sѢ /}g/)S: aI;\S.VT=djC\ƒ0$Шn ۤsl6  7^${ӬH[CjuJ{]6(O{(d.#ʙ(B"ڪEfVltQb.k !̀;kSpMB8IYT ;^b("dHX^SB4y;+XyOH2}%6@!E{x5/zElz$n"Pā7rQjN(e*em*w=d*ȷ7MWʢLUls-UME lRm,re֨UnAa}swgAߕIJ-[kEڝ@5ٿ,f47% mƚMaPb(3d6P-3=njht]Ow&iC%U:-a0+b>s.ٛPTBX%iS7kX7"thfqIlF^ OBbkUש&KU=<)czҲ - Kv*"̣_4V8c6]aYxnejb~[G+53q5QCznp?va6:4b(%K2*+SNu?Q(4+儹[$ #QGӨ@#C}u{\uv_5$V~!")P)U[{3CxEr!1[\l9 Ue5Ĭck6*"hylnz,5"ʥ.J~& 9**}5=+h$ie߬ (Hfh$M2Ӳk*=e/`cҕ6Q(fН% .-v0v5G} x\q"UuxH[NvȨX'G(tsc4f5)-HZehDVMZ^TYnt Q)PgMӻtM:=%+I|T$5ixya[_n#ncB3)Б-eQu$>tE(لi!VegE0t9A[kXEw,e$?(5@&5-}a{؀ Ǥk 1Ym;sVwZ%F6*icU|B(OuQp J_.vU֞\cPـ@5kJ䌴;=*#k"åew.`kɖ͑r 6N]j yb6/cG/mI5ZX Zh!g#BNljxw*-5_|@2nyF"5if W :  E,]$(0IҀ(DjKHw=%t 4_e]"L4Tcb *(orzC{H5kEq8*̋KpiO7C ;u|mE-66f[ nj| A8 V;;5=o5:VBoHmP1 jc0\*Fr=ESWÜs˱%U 7D@՘/YYhP2juͣ}V+Nu6 "5:ċ= "g {r"4f:|Qq/rQh9XOKTX^32SSZRy`^hSү#h@uĨnDt]Re9:mi.U6 9k`::!b&ktdJ7Q߻џ%T'zb\u'A#"45:5uK"HΤ+o1M(n6:0aM|zúޗ5ճJ+ ]OXO6{ -ߜ|?Ht蚍(A nVE ߜYٴf,N /uQ"vV 1LlI(dh֐HFDvZdYQFͶ(CryIPv,q®nf`i%ˋ} HX8U<4PZLж ="m4:KQn&Uȅ9L ,55_XJSN*tKTB]Z0ZufZn5;n MLV74x]4ڕ: Tw T()N7L287 0CpG#4K A%: ч(S~Z(nELX1 x+fklz ĢSu#ac+PW u EĦOOtc"n 0t+[K4(PTk5^R5[] ͉ZE"5@Q:Q jf>Q-1Y,9̕j^RU=: 7Y`'I[J.tM*g1e0 u o?H5o)2%-Ѓ[[*K kȫgU?)'Kv)x5 E)f_5|kfe|?PԦ\fvy&bb+$秣~ ԫ9Ql 2TíC{kBf?8^)]%NBYC@ߔ}f-$_S3R=52t [XS?-cBZw`-~/J[ᢀO.fe[q3׮j09zuNRO$ DQGG4`l 1] #D3M71hb%  1.kŻ˼ w'"YY:Fap}!ISaMvNPI3"JݮZ3)Y FR?i;^.om1e38%A&R|4 I͙/kM,mRt1 \~c8G_)'/y :MXMbnng2we$֖])/Ros~KI0c1J1&,SS4Q(/D-Jϕl%Nz5([]sm^P7?x ^lTz.NJhŬv%Z:(%QVsߙDtZYGS~/^|=:k9)Y)SzD>+(h5cDTs93S]EYWmL"AJa/QMT](uXkb-{s4}St3c6Uˠiji ~:XT"*dVzֵJHS1OJ03os(n"^=%fFeT6V ͊3b.zǠdk\;|Ba))QU*cK׼bzXB(#5zA[[]sjb 5LS+澷R ( sXQAtES{(A6ǧ_keFń%\׻ '+_WŎ[Eo;U-)/έmıe82lрo ẏ;רkHRq>3vf@=j_kX??ץ e#:f6O)@#( [ihQ@wUg=6op/W1e8)G+& bhS6 7O>C)yQW 0t ʰug5x;cq&#`ભdoc^،! Τ_C>WV\Oj(m3#(_>"pԿD9ly/¼_/P!ӭJS˧;JU5)W#)a}5z8^cGŌB֯Z[]4C<GnSOhI/'*|=Qᴱob|}_R߲Y4ړ${ cRJZ7V}J@1})8P~{,LCHsq>;;*tS.Ke?;~W_EQR*<>שSsb{ox7xj:̮q K1po(Wa3 Zu Ҫ_2 #pψ8"R4{c`Ң^ غ!%7/? __ ӨZ]Lÿ bBM©:w/3^|?LJ 8)ߤ_N8:AS܌|@ O)$wŇdp PRR#6#TV#fMK!Hq? `kcZ)ު y(H?p<l}\E*kC?V86[Pyr33\% xn ,lA~QH˖YDF=mmoa߄ύS` 7k|vU`dF(?I"Vӽ0|XJvr8x7MwDBJ܍fӂ]r6H'+lHmoLxŎ L5/GB Œ1Y Zn>>*{}<0ISAĩR:#AQ@4FC}:K;kBPzoQo%}~#EJUs:UIg]OIRr2jcL1\0*1eTwK|؃6LerIm뇵QGᒈİyj`ulƷ1 o-&V- 73OM`evQ eVbO eAIwhHYy5@;A.֒ u<*y`ӻ8)+\31di ~-nblk Zd5+Jz3TmNLuoY4ZXQEX "Zb^ raXjuF)OXzγ\]UɒtpTN/5hTG.I$$HI$$HI$%ʗI'$HI$$Hyb W߃x|U/#r#A fDq^ CS ñԪQAڠP =N 08fOS+m lMR/+ >8_x%RXNwWZV2SԏYЂ^X;<t3ctjTg>#3`K"6c}Oq(pZ i),ٲ-x/,,'1c _G DU/kϏO^Sd~Ênݾ>wGﮭj4_= W8a H߸' IB~0*2,F>SIcxݎÃx_/Բx: ô~-FSYWFlc}I^&ւ`9a}̚<:xkUT܆\^}n5[NZ +.OЛ~S~c Hże+W 8*# xs O<Mj,?|SWY9+ş<#<թ*.s/y[ x& 4) 8W{ h9dӃ<ǧ_Ryˋ1[M6T~ SS?f[?6 ~1 rez_~b.qjQ>H7Np5_oCa /8K,-ZU;1|#ʸjX!=?:/>;q*US"ğY#ψx?CO S[٬>M%b\%_|;Sa8bbimؘ&8!?|H>9x'?e^4S0b)5_X3/;9$Ǽ{u߲ڟcq\|G >|KR~ln>p!?uIa#~y.n01QU|?xO?ܸ# U浳X)//ykc& Qfxo?"sޙJ LJm:RdD!_[*Mj(Xgki$yg}\Vaiنzw;W_Nu8p s~P,,ykoۄ$<\?GI>ПnCJQ6O &H'NfGύ~ NXU5<`Eu}|< +O0|_&k7ͷ> RVH8fTqOvq+ͥl޷>%Ę%cKɓ5\9Y; ÍkJ"ҡI I$I I$I I$YQs4QխfXu[Zˆ)lվ "2[PLu7ɬ-"m*Qd!Se1Zf#;Yӹ㪥[RS2OVH&UE!s[6k:oX<ؓ{y |Ёv>-3c oh߆*x*c A[d#kOR!vmM5,`uGUvxgR5 ;.J;".sAzELnỵsi5fbn^U|wA! sH.5Y{&o6WZ[1kAΤXwMPDF!q/{4tfꊂ ʧz?ՙųaVù6Y,#cv7f)&UR% L5?Heh5'4A*i)R 5 g ^  +YP5->4VhQ,*ÑO)<5hOXH֗IU@M)~te]xiY<4=G)5|4%t,|x4W "YBhS^_N,#Q(|nW nГ#t1? z4s.d%]n5I4i^N\m@a^ f.QqJy\+H  ;c]l!LʷʅxiПybM~-Q"[ J;M.0 FD{Wr>j8bA&`A"CS2iPQ|# 6$8Urebe\b</0r&P[Yy |)_r9#* fe&xJ,S^ER),e O1 4̣M-{yjexR%;(ǰSTs F3'*X4DNhURXܘ5Poi>noa5ke`NX5з!f10 d{!co,@IW'. ߤk.a{m$~ʁt6i_w?h#{'$4G3Fgyvi&)nqlAxwR1maQk@/3I&Qkd=DQX^ /;KO 9G&}-d8:nY}2JZk¿U2Q5 Ѓvv2 !oގ:=3o3H>`AnieGS)*:)06`o+F;cUƭJh(+NPYL jIh+V͡)& !yEa6ZQo,, PM9.243%"XI lDФ ^czb^Q S"36{,j,k䶚[/B{@s/,̗:O;kkz2΂4!-:ɽ,^Bo0ZkŽQnRtQx["Bz!ICӜU~"6_X,j+;kY%Oz3~WuܘHӑ`LKz&3!H +1A,/FiXj~s q]sX&1R/ Ka-=u$GКc0wJO +yFh3=!-&KNm\1@,ٻ gk5*Z-R:$kyNh6*auI@ s6Rʠ- McUVX*tBv5)wS]w(ReNU>e2VГx@²%6̖\׹E?6_a %4URb9Թi8uԮHV"uCp{)^CpZ%MdRvnVJH<Ã-% ] YSfyALm{`UC%9({JaNO_*IIʬ7$Ŵ?z@2K>xP@s UaS픰B~)AM$*(o3hl5-nRDE܃/}|1Z)}_S}o^L o7(U1t3X5KNKLj@e'0 v75=+[h IrY2tqV٪}!QE5Vpa:#g:p`ᤌɱ0Q u18ziStׇr{{^iXz^6/t`,F{r(95a?,$5;=5\5h,ktUU ,cW P}=0~cL# R eQ45$- mƨ,7W3ZF.FfU˦ uoe6ƚ@@rk#[d4-avK); 8_X- L #M0F(% ECzLX%|oƨ6/&@ Q$ƁɛR `MX@M. A(Ihťm1MSlVʖMK7˶-MØgLEZT.{ k;hh ([1PV<`8[ŵ&#}l&gBM\KhRO6nyg ^_06JOCp .EG0o kӨ"Ǭ^bt-6jlర:S{tq~Uف7 0=dLMԕ?mL.V̎VUk_8Z? hK ̤" *lt(XmIHRۙV4X[[o6!VKW&!W̕= ^sE*n߼a&jQPuf ,]9q,:YMJ=`&kQ,+CkqoIe htt2[zIOXUa)jtkCTyUn5lì7na S˩7 JlnƂJB:A y<3HE\W-Ϊ [2ll9A _\WFbXXK ,6w9'5Il ̬)iߜp'xH2C,D*P5vk|cA^p:KED>츴JI,H9Felͧ5A"<Ԍ]hG@rW* O$BOa}M*=(P#&tc`;WѬOk7Vۀg,lc(k5dDRFEYk prfCzg׃T\ѹy{?>,(FB_^g4Kr͇}>V0:xbk`*-k2`W QUs*Sa<ÉVWS}9R{>.P}Lִ[amxj2ja'Q`JXXTYqPi(BCvd 'íS LA#wU;=&.Eϱ{K,o%Arh=ɉ8Ji;%ssK 3KrmP/@f@6V]/aosi ,̖]0mS;p ?˺׆Q|ڟ,Ӂq!U[7O ٽ`}<.y'΀{l-]Xl}e1i3 jvvB@$9] }ayV"{rf yCj*:͸~HYY J J|&cc5hNP T/!ѐخD3*b;LEQ>F]e$֥r1 $ UЦT1nwl21F5nZ,i*?[-HA0ٿwh`%j$-&Fb`7C_& b̧t#Cn]ԛ/"tJKG!][>f# u$pŴl dZYj: [4S+jQ?#S$^f&%>hĨQ63INHnZ5q VK~a+8s:-0֓ ]eeM`v0ﱇoR}A_YeKu̵6+!@ ԐeektPp(:Co*LatAHamie3;j=.I_E[AdTb`^mF.P.P6ʔW-7 !g MVeE<Ѣi&q}A>Оƨy۴vUQbEks[T#oC u7+h9[Xcs&iT~lt*@é#ͯP%Ĵ51%Rvju;@'Ea#7[X⍛6e̓h9^4b՛PW6Qe|u5|=O(8a_%}YK ⛐T+Z-YKyere%1pśj=X8E[_Cԧ)0I/6ʀt&"hՐ[A: i{/>Q3`_(S8f@^Ъ8 %m4,AC cmo $̐-U 餫v(-%2^ҲLZ3. IhYdZ3-ĢKyd-%.%eZI24.%M@ IhEdܠ `KWY@ZKB)s,$-%B.ZY2IhauLZ]d+ZIKB -hi-,Ih`\YK EhMmhfuk ; VllZ[fu"+ 4b㥣֣Khf>m;Sp"+Sg'c{F3"fzƭfR/9-#:Wmz15ff[ d֛ deE1RD͍J[Թ[]vvGUJuWs2.|*nĒAXMe-1k1>dpe=#PfK_ȵ2j}9GSŮ}#4ˡE65tk-t{Q(v^'&<lZOº[ChM-ٛPsaϔ[9M2@MNҠrH%. 9SBc!o/m%テ`<] 0_-w HD؈ -q,e"^ZVDI @5 k]ɾ,Tby^H,L;(ij%Ke,N׌[}4@Rw$MUy4|pD7:BPim;ƆxΤZ1#hu*=&Zk1,#:PV]vlO ^4j,u)*X8z1Le5[6~äI` ]ZP,/LnqQA]ݥٲy(-γX$@:-H5@ӡḬjƕFA"ܞkޓbH<= `!^\Ea_An|Ac򹵽rgج5L5R2o=: GFE ؖ|>vL"5ǟ._Eۼ{ ~R&qk4!(X eV(!}ݎVMX50EcpmØRۙÿKK^b{]@#{ζܶ%*@#O+/# =_+lEB͘i R%,m\ua'%@[+R N +7#Qy+oKOLgƟ0.Kj[nyO$}_gߍbUO?ʆ1B_ :ϴ//??g#ިP_"}G(??ֿ4(?v~G>~+ҨP_O߀*S.7?ijY>Imdˮ? ic~s:mϊ/Mv~$JEg$)|S1k}^WhAo=[|#M5}9GW( :yzr<&69uZM b\ZrZ$yA'PtQSLmBeL.CoIY\IO@8`u%k7)>@8p*=!8o  r9{ZM,=LEQN3.:>z#{?xWib-U/;o""v\9|ל[MnNZASm:5eXA _xk5ҥUMfaquIeP xJ\zKPhynʪ屌; /HKة5)muW g,޲W[|bU*):n.:jfKj%q&Pܩ0(%o1v}nXMv-] -%ղ}6fx{nSa`4V0݂Ng*O! Cx%cR`A< E]MC.2L]02%5H:o4vwoF-"17ԙE+6(:{e Zsæ07"zo_YIKzB"I7Bt?YMo+Bd{h1e^V=e:OmGHDjJuwRJ"SI+mz ҋPuQ([{Au: FaLUm {Ai8k MBy\L! +:AVEIfibXw#?VϹƦS]ųUaݤbRzda$Tb=5}<3.mEI c;҉s(o&78I1.^\J 4I7M# gVOo#ҿ_~o'n _oO DQ2egS3?1>+\΃T7`|S(L~]_˭_cR9ET~{ T2Vnr7ֱV6>i 0btߔ"-8Vy04]a:޵TVZװ˕oyZ*܋˯.JV& {O<_gr 5ÌhB59^;0`)ְ*I˘Fqئ#W^9gM|R33v+IkhiF XMg6r8ETl܌IhiVhPy8 Trrt=&V`E$C FR&6!u`Ifԋƥ*"v02?OYm,{eh TRˈ@O& >*zݵ'M8!q4n{1.+5#Yv;Hj d;7 N`"V;[{|)+hSso{nNNX1ZKh *63Mz{H_3n"AՀ}zT.la%Pt:lUo5j)U<^!A?vS!2'[o\͕(ӫSf)ѴH\GS9nCE`ҕWk 8[I\mh)PʹD.%oQ(%G̺E7+4WtynulױI:lIZҊO! %_KsZv,.:_A {tC'mm&ڈ6 N[Z_C,6F%v[Z:E9Ir a:Le@0A )?52;iPȢ~ү6Z}e}[AQ`=+_{YVbu& 6kNYis@Up!/ͨs2?Ģ!IANҘҾ 7>ZC͔eSnS9X__0I{2b֣fH^ Y+ u0@WAbyh*՞@fqRLY̖Urs4Y9򄻁qZ|ɌzCT;R_* ͔xx5fSQBݒwpĦf2tYhel] ZmT ɿhZM`1Jik㡨Z̸xi7xEB C\z9Ign 9[ig;%N_j/9*/g14Δa ~SȄ#e =J}CU;iF `ÖQ; /Srbmjx('Tr?H4UY^zGÖzzUA@)n֎M4Q yK8-)Ǣ$ Ư8 ۤX`<ЛJ -oCORᆫ'L B(Uޜwjp-_Co/<:/KO@ql`+gFt<aǧspnyp|? O TRA; {^:.Vרr̷_P>BE9 \GkM9O*Ŋrꓣhe5s9 ڝP uYz}I<ǾԦ(t֍U2E ~sѩJt R 75˷L+M<8pʐta"1O_`N1L,3x+K8o5+IcI*ƭ]1J RB'>X -t09:7y/ŰZ%\0ԭpdb[y0h(/ē Fef;𴇛Tp|L)"5el ? _u?526k'? JZ r#%d** (qTPG^<9쩆sr493c+NQM's%b}"N-F ay|5 6W?6;1\A&x"ۑ߇F}C(8{eP*֙SpN!O标sϗՏG}p:X2}f%)3s+ףzΠXxgYϧnch [X'+PcPmqN%xCURi魜{k@.Dw&b[>^lTG MʗIui>89X`,+Qgs'.; XzjV73E@z:}^2eǗF̮.N)It8ZN#" ́q,P0ͧ[Ԗŋӳqqje|Z1#_ùʘ f,='?ǢK+^B\,̩{ޝ:􄕚++ӬP^ѢUӷ.vqŎd"4M҉S&˅h|}*^,Ca715 UN<'4Lq[Q!(īz|Ǧox;^LBeb>qsًfԞYRLL{ /nRFxMnRxF/4a"O 'o W,1EK[5:|K!&XtDj#/0D2N*/HDh1+]a ]pR"y%hnĒI'7kK+|h[3RF8E-j<:0-zkzM.2h$"yr  Q.Tʬ QhW^ҮzzkS_Dr)J qƈJ6 "̡nzgt*u )f":&ՔhJ2#q*If'UAB-JnPF!(#s{H4HZVbqe2D].`6pהN: zoXa=boK 8/ $hO_;4;_cnYmB/8ᆴVe< jr2\=`&FA9#PLKRBp!'}]ݾ[@S-ƀj `YR q fu).$@N?)5FY];ʳfx6V @.>c,A,$[R n z-_]lT)>r$'EPa5-(!hk58-%7q*) ZPb3O86%,Aca SAnmyEmbWHZ5"wiN5CFk忤Rm}9?Wk:#[^hN#V՗NUB.iJPM%pˍ};>:[ML8״B`h}4-8cֳ3д||z۷+OEEQ((u%o.6"{rL1Ō2 }5{y8Kێ ֈ'*?Dqu ؞K~?E+gXUיPW:}\KԊ!7~XjoMZ. qB\U\:1M ua5:0[52†]Z()-Y%R|@f [ReLˍZۘOM UI)_T}&#"{BL:#x.dba]:4..Jؖ?WIӔ8,kn`K1ʚixM\S?k_l!ص;~0`#jO$㮿C X. ɚ~6gЛ )޹9MAR63˭ӬC}EBQU*5IoRi7,t&\VO2C^2MIKQ})_w0q<@?/(Z3i A7\-x5-)W_9P=8i45+Eԧ 8G̳<,*bnEr/&Nmq-~?K`,j?k柌l/3]mq 0fCb^*kF `bc cxТ̷zY|6UNY}j+SSUm ©'u|}9Y_XK\=D 0ng}!3E[-Jo rm]?f bfk^JaAfr&u0؂tOaiI'uh0.|ӑVJH(1,,?^ZKN\fd8LHakEz@]\O⹫0C[07a Rē~V\x EԓXij)l&@oL˖˰"}Xd̮ ;+ WK^UMjHۊnjMQ0kF.F6auk٤A614?X+X=mV=ko4'0,Ƒ&h7}%:^P#&fv"X'0{CP| //&s6SI4?H%l4f=P{s6PGOIMYR5 7%SRKv22Re5$'E?XE5ACti"DPzɆ4{Bh֬0e}Fbf4܌lE4Vh{q6~Cڙ>HkEԛ ILNA Toyzk)a{윉, V{IbZЍ, :"h(5eafj Ģ.aE:PaVĘG+yE[HH\>E+&I,o2*i#_\FfB4ysa~QEL9E8>[#XiCBs'5wMpYuמ&顷Q!@7&]Al93ǖl&Tz L:4]gB̘˔'[t&k^˚7kl: jcxK6Ɍ[^ɠc 6GKCrI˷)C]lA:&B7v[8lPs\ʗk?-neN1ZK {\_6V ZӤvnҚ0,M.TuկjO@!RܙCKw[ŗN3Iq$_?"Ԡjѷy-0~޳Xh #3ZEV m8oY6zI/Qc-R_}-YN1c<]X%'Uifԡ^2܃t0ɩL?bF>~+k?l jZbXTDT1BeHoS1 #TjGMDQLpso0 'aׇ55¡CDq5pBT{k_!f"U4P'N۔ɧY-vt'^ pF@<}OShtW%;K 5XԨlms) 3q-zXSpt&^ y'Ss]A"2[LuAP&9>4ʅshBb\kKF4 mz3iG9HͫԶُ ,Bpzk7T~mK-C7 bI|1ѢͩS7%!,3MUʴM*cNHfuK%LQ>ZC*Eժus6ڎ\,m*թi'6&’zo hQIC&Q!Ikb{P5VڝXW#m H6 vB.zv h!\x)ߝ^oxj4GY.tQeʶ^P6]렀3()< }E„RYeIRkfvяy$ T.fcUIѴ 죬vj'YlD oΧ@XT{FTjTzBkP,Ik0CP$Y#F% Z]oc ayLjhzJ,I="-LU1_(9H)|+86,:]ĿXN{̵0ʭ/9֠F1q~򟤚s=F [)IDuӤtӴ;07F]zс6.U>ŜY(/]yY[Y^59cm.af>|ɧhHǖr2!>zLA" w06 e^!u:f[y0jpne792FJ2N΃ǣOm\UN$mrmB1燠?sf$˥ղc׽Jo㩰o"aFcZɳi5Ta<OGkR֪CZ1Hq1X7^c8wyyR"7U+x-jy_x,oyӒ{pռR ^9I[^Ec51LF}")Y-{r< R`l^ χO8 80b), pNHGWV˸Ű0/lf\!O;T\#G,NS^t[u?Ǘ+]Nl#L}#Ybylqh/^"׽A:s9G2p/& P8a!Xf M5m;*Rnf{x忬 ̀"jL: f}:קrMhzju5 V#XzzpʂlFb׼cj"F;f<=~7C 8 b?IqSuRX{ Iޒ(u㷈u/p{or%(FlvK0 gQ8D](zJl5a>a8שD5quiTREӼJ<3D~%cV0r[!`]V=[K|5իYȜ9ѣia5AwF*!Bγ]:p떚 Z*BĞ%\cE#aLeMYqgW'! _)Zr1HnGu1TSc@Z2(L?(=(F=Li2X@n5CКȪ[u v wPh!mCW*VMe%,5Uʌ#aB-7*H!V`:̯UW,OaͭզP pj}ޣ Rt>lAcA-@yR_àZ7ָh"[L=7>Vf ݌.+T&dQ` 5YK6B!Wۤ A*:PߐБt(a@S d4\jz֨kݎBm{ZU۵]lUƵX#J iE2Ff0u =b]50ąFZQ\Xci5&,1 [5-|0@4(7* BEtoTԉ|܌Rek2iuʤtXlKQJQT '-,=ck[8af%^jM0ݏIQQ-,_^\MQO>[ I*ɶ {쁴$J-n/GM K0,0\'t`l)sr1yklc-KcXt> k[aNӏ.L&-U9|fl21l٬č;^]XrTFnuKJ`sהqnMQŕX[Uw,y^vVMYXO_v:L )n n k<=S[ PzK1Bcc9͸lb rѡɪ1h奧h?yw{c]X&\%QM7YԫBcS9<1bsSkk[>bǭ@wT.:7LzmEpwhh` [\*B- kc *շpIyͷ02fCVkjڈ^53n.JvZ*q~Do3%GFJ2iU<r^" KdSigbjyuކX;ecX_ jX-C~1T ƘޅFiE ?7=1 -E2E?t@@R^njKkd@9ڼ*cQW%IO)Ȇ*Qsp=LփW6&1Zܮ:ě B 3; d00M<޽`6؎ЖyyKS4k4`➈ͥU3S*/8Z]J"eUu6Гs,0JPũF;ŭ3C3HJ8e$Ixnz|6'3 ͂bAeNt03.g+ЪRNһmAmoyypۜ0X[[tkW9mfsocem嚢_t|ny3!G" 99r8j`%8jgL;[(m*0NSgU$֖X[ *caKټ*OHkZbfzؗTnU,]R2-Mܜyko'1'ҹwכ~2iQ-3yrK2#AeSaR_1Ӽq Ƣ}b*Գ"0Qt_::Xu"Z`426i}fywWN]/ HsW\N[#Ìֿ9(T)ijuE .ؤ\!o26!)z}+15?y@ٯc Ը8־~snı MB kԉZ̢_?՟nv H}&~o%}Kqe20\={??SQ@cMm.GA+KTt}$)􇴸B5Zd=1N2-xcDru<=<Hj5$ X\E] ;Lʼۤ;7plADF,KcԩXyN 'tU|]<8, 7N'Ps2gnCP- )5.ص6@N"\6Y&p^i4ַEFP4:u"f8pምD K]y(n1V|m9b5ZFΈ7 7UM?yL*XT'A1 WP2bohz/P:!ӱp3~@+"A߬[~ͼ`؛rN]9nHB4E=% IMi0֣£kZk{ LF ܵ)CU[˧h,mo/YZ{!ur%ș;f#3MB @l T|OAs^@cI@Z<y}Ϛb>B&Qb eck}$vn7!1P2yKI=D1DW1Rbޝ&z@5ďq;%+A H IF)i=ﮃn[(( <t6BB|S 1qQS03䑭\02Ć vmTXb[Zb/fCxYABx`^.j Q͔d$:oA$CTeMcX6>h %2,,DHM㠙1]? Hf݇ɘY5z͸J M\̚4d"{M&3{5LOrP 1CjI/=l؟SOR: E/"T7 LuI-e[ffMj&ۡ35rPĥg ^9`PFyzh5T[61(6aґψJmϣ܂gL\m4OHf"%fuC~W$m'iP 2.5^Y5ơ.b]"e.^ XcJAciB(I#Ӧrfbq, ^l9TW9tD a*$jL0 S倨:hPè4 dcpʆ1Es:ePP"BgKZLUʾD؜U: B'*j),!Yzx$t%kD}>0I!ΒiS4-zI$H? * +kN!)s J5 ({ıկAvIja( mD(4fgi s=f-%yŤb=/0"mxrfb%4V!Ck۬~"5_Ϣ%۷8qar9T#<*1miBrsie:}&V*۸1EIԍzAl זi8<~ɻ|Uv'*Ryg#aa(5Ξ:f )F]`VU%STih%wj%[!'5Czgj S#VWt^mkR" rӿ1x&YH -}aSʹi[xyiN\M(:3t-1x)JXԮXe;uS{)2$X.ep̯be㠄JrI㤲%&Sm؂ ]Wnm'« dUVG0P+953?k &~`W l7NEoee=4U 3 wLP,+8%1Gu-\H;0jtԝ?X:V КVnV,iZ~`Pe͕w )tQk,b|'t$b ZubT"]JZ\yAzxj˽j^UnGl@Qi66"R7#\X0b+/o{ DJR]JaU"&ZC\1*ܘD(S/BAUkRORN^yU6E%LA6*H4 |F!U\T 7-nB%P/]FUـQyPaμ⢍[$܏;R>B%=yo/2Ga)LS|ߠVxgoxkImkȠzT:f á`tMahԩJE}۷`'ԩX|:BVC} 7/ٙ0eTD-KF b@z) ]36"Sjb~тcUf s5'L]̣Mi&gzN{b*VUrwƊäm%R'E{ lMIiA=B $ٍ ͨC4 2ukQHع o Wz`W1"yle&R䌆:"_'P Zd9kL~x vVe:ʼnoqKX^L*婟KT8 6U9/K Z׬YC oe/2#Ztf+x i~FRtr65De3M:SmyHYո /Ne4ԥS9mNbJ*&@iu#PI/M,T`(Rmo'h Fe30 :KJ"@$g$@0ҡ sEڛeu$4ѮieM,, *,o]Xcad*IOp4¨횢zSatB\/c!`!PٔBfH)SiMfK[#\(s!=؝>xXXH"0֡!.M j%~bGxJ/saEaI[iDT܋PͰQ(1oQ3^D70ikw) X .!LjbEB OHto/Tj/3{MN:FkU\v1^=  I ZTgk@[QnWTJivk-X{E33skh"CPs ,Tf۩L<ʤaiN[y=o ݯNADav5XY[f],#*>TT^}KF5OXOUo5jwNQTc235-3kr5JQ/w˝ "Ӥa,-uk 5BMHKߴCU-<583yUNL'_J(/LS^@eH$k$ f(!G/7e%t:GlPZ,6Őox(1_{nBYTMZG=k2EF3Hѳ3:>"Tـ3j^R&'.lNa!ZD4"C,]HaX{&mlA,2dS ;lidnA YjtjQz>zm IVbtC/JX&Wl:!Lth,MfWJl-SKw[01R*Aժn*mIUlQM<}g4hv: P9}:G%N'SɡQ9)+\Kŭ*r@LEj*:Tc*Ym:Tb6-QÅZluXw':*QP܄s1/Xb.okW$|s5;yA'=9S?sU`N5kܕwh3!7 /kiPZ}Ԫ騎HjUS6cQAԘj&SusF̊/#%*[mɪ-1RPq 3'f#x5V0.aLWeX8! x) RfBH-*΄wG'}=!Ut$3^X$lLp/XĨh Z7&^s\d[Uu@T%7OZSQ$77KB"nX.D},`]Jgencb-"cycs-T0 ሚ& ƱMVj[8 ]Zu'y^$0zLu/Ļjy.Wn4H]3~Ȗ"ߴ (l5mA!X 2> kL%P-s0L?JjSq*;~n,1'1, o.cR(\U*ɬRne\^-ﰍY sm"jX2 ZZT6.c6ѭRwǩW=,c h5* k1R-j6P*sk|1;rm6i]uP1/4XK0lU_ʋ T0]dAKeejm83I%CF#[iU7H1LJ9<QL#SН(4ddU?)eBV1%M `m{f\&v@f07M͠;EnD JHK[Bmv]ObpD ĒLXMvWG!mf<raщfcJ'aO*1UӼ1OiI7O"ݴK,Z3U1.c.5^6^]t!0-5\~MTk\(jåjK@3U@R^@XHb֐p~3'}e-MFl@Q 5KoimUTX RHƆҚuRXղ3fec|EAf$>Ћl4P+^aC M4T;-QMcBAplVS\ސ30'QdNJzXt+R#OūSYEhT3)"A) Loa5H £s7F*B?X: XDo(+T|'Y |@^M뛰ʘadVG.fj6џ}$Ȩ4=a?H-m~Λ-$ hSҔ֞ gK3yYUU1l)7噫WZBߴHצ^Ζ=wj6E+]_ % gmD Cy&QGAA^E ao!"71^Rne@XD%@}:bΝ:qk~YT (fӭS t-j7Qn H _^jzkUs# y]&k؋ (Cv%򎼣Hh!4JPDZ Z ifyIrW:uyJ;[8Q:mS2Td9Jv7g76YG-`0jg!zC^\~c%: (jE&%Mzfqe6e<ݠ5}?fq{{@FZn<5S-!(7vaߔbR0*'~(ŤnҎ&_PxnTSJW[W%AN& SkrzLi= APeHo{H Z(&X$?6%gE'R:Cm-Uq~e[1*T\Y/*yXZސZtƮ/L@(h-LV|r } U1NhkN}!d F MnsqƬ)Ѹԫ{4(04A6X(ץMrׄJ\iRF?hH1nkє78UmHjUW#+/ceMg=aUJ5hO=<*['F:ӻN.0ѫR`u核0}b,MMoLYˇ:rSgԥZ94i_SY1W(gapU~$WHECYP Yq-@0`L3-īU>=@hT6x8@C]Xu#}'&DlHkƆ2 }y8gtQn1Fԭ'S)YTjMg[1uSV:Lt*T- և[M g[Lul!74Q5`W3Ha{uQB)#™e:UVoZ3$3e;3^:/"u[n6!?i_ o66JjV4i-Embrv aL(G d{:h.׼%A=eE+ipIV{{)pulU]d&ڕ2,,X5jApu[ Gk*Tyq-k6C/YZo X#QJ׬U@ԆXHZō"Pz\K*0ZZcQZWjwE3-,ciB:p(V WvD7\cT,UbԋgjŒGXLFQbtd%S"S֡􄌠]UӴ@+52ӰYu+2`OXfw9ɼ. 1;ŷ]dDH('iDæMLYc0hhuy 2&NR% 4 "0]$U)- 6]'YOTS ,Sָʐ>saH3*lwh4(HM!ZW8Rm$K%w)V@*KSax/e&mW3ˡs}&┫.e7J6I} d ֐s my.-0lnt1_ˮ%EksmIM[r {* TQа-"jOhd @(JxY>[Ip0iDm4QRQ iM:cShQ`-1csjbToU؈HnfR" E.*.5`Jѳ\8vSy: l!Tmˈj 2-L1tJv624!c%#,0>Z~QRn3qtXBw4w/)Lb6[Ps;b]p|Щjc`a:(.mU~]=aYP<"O;L_wf->䟗f;,\[KF6'Q%*Qulݎg.O&L4H+e[!~簐P[i]4^\3V @  #)۔XMk Nf90ԅb0%zO u[#˸zMNuK8Nl?Vζ+a?Ij)ʴ'截Ľ/qsn9W Fsfħˊ 5͵ G[tkSUjyLS,cƁk)smO -:}P7Zޱj}&J9ZlEm̋V0LABźZjZLt3η}^&APh< |UQ/kZ1oȹ=*e3jhڸT[VkNնQR6|H=4a9x=(+.-ͿI.*nW' z Yu01= aQ`uȮ3^fa ե{ u *s0b1uk0,G6`=a-ݦ*I>ԏ|Qk} e%XYX;4;) 2@Xt[Q` gg6DLek{Q9ZHro&[C j!k-h$k] 2y*}zBɘ"i(%Ub4)@EVsGk mQSE;Abޕeµ Eml4[e*<%2^˪"0U7u"EUq/*(֍Pt71A@E=hT5_Y5}Bj7yEzJj/\b֥H/ TY[`>Rxfbf\~+++5mm9*͝XnK5 %aH9][ic9]}ΓbThW+H#Aad5J2rt\8 kVr,t38@9$ln f Ҭ-@Y{LNdR}XmƕlĨ 61dbQ04]\3ص*D01ӭc7n1W8lv5XsiU^kR\FV¥aaZ פ4JbĐcU7#3a2GCt7XF[ [%U'+MT!:L\j.PYEBOT%JSJ;6֌-X`7-MFkq5uAhS1iYY{);lюD?R/q򖪰BAWq%{o(KXi8 h"HIA"ڱi1Ar֙-^-f,B70䶆J9 zdFh2Q 0:{a4rb~AXA RH]ʷBub;JdBb{Ƣ7R=* /-$Y#D^Pw}B:^{}!j"ۼM_IeC@ 4E'P Vm)2s[@S62CF3Bo#$t颏-h[ mSNLZj%.&#dU6 ^!͖D.L|шs* 1JJˇ3wz@*?UvZjzIok'RLШtñiS coHJ@keX]Fs2Ko"=dI4XNf@fl|ͯa $L5< 2SczI|36~"j6Z+Df&R[RS~ zϚc5T:w0O @Uo`RF֑}Lz\ mRS1.5j%- * qB_*e\#)cHs ymaNޱw[!n~cUrF&S'tթX.C^z簼]d$*eonq9AlS:X\mM@p"qXT9nݢYqHPh#d?HϾVPM eA ٷX[JmY#,5f51@ѧ.ջwq2S[Q/3,ФƙH! O}# _AO3kDY1c\65,#!'}dlDEHjPK !ۘN1l@b&hjԢ7'> GэEUfO2 kX:7۴jW[ebDedgZC8` oq Wj«t69VTmnT($ ֹVNVoL=uq5iaIj"P S_Yy_% ˰ANCb\-z3.6Rr67hNX m>.HƚV_Ѭ&4c{r4hg$sAsOfͭsSԦ־[|4B W0{T(91 k:GˤujbhQ95Hh" mihk̖"+Z\O+ Ԏ:t+`l}# lԯXsN~fTՔHj6\DPբ|c4`ad'uiUC7%NLL*)t@Xe:[l$Łա2(Au7X4㭥hUuCX0Ո:Bb(OFau]*aϘ`l J 0fJ }DF w]6bGG)eZthnKߘ1I)-DoHzJ4Xl:"si4<afDEC( Šr Q(iYR׋ f1Xlxr]N)ltUQJjcIF$M,(u>_FmjiF#ښ ]b*lwRY]X8~ϭ=D7~5'R8j,W)[V#Ec˩y^ϝy#ޜ\GGs0G첰}WB`9uPI< Bpv"eV,Νχږކ>!( s4"OΠ5傱_شwB̏3raZ ET#ϤpkwI^=|G-ihoO#onՍF#;H :%?`p$}a^zϿ??yxS"WƦXR8*{EQ1=!1Pܢε %Ƨ/t~̯h:zڲ(V<7/SK|$UZS6DvWѫ'b5VmTU/a bGQUO߶0Ѝa_{k\U]7p}}X8HB'^p\]BPh#*D-ؗ0W }m)4=S0[{:޹wߖg!̹rZPjm,v%{:6u16ɓDnD4["D9cXsX6@ 8kH֯E!c5 -[Tvz_6#{="J1T*Ì jkڅsӪ:[4gN Ζ}'ޙP PTF8W9u%CʁMqpQֵƔRΚ۶ ӮRaafc@̣PlxI.80 *Y{`c.%(bj3|G>v9f};;;sRey#۴T*%!${6P놡j0(% y o xiz|?@dvmivl&>~t:m`[np֮MMfVʎc}@0@c5\2~{9<_Ys w{s74EA`˛bXx"UU¼zww&͠E/29L| 0vԈXԽ &]iEc krcf}oѫ85 zKU[d%$е\* WK+ [D-*X Mm(2FP+33Vʇ?Guykt'1{_|vox{nc-xcӗ@Ïn6bTA`d=/WkvaD/ tpq+Ts;`3wžE1F՝!Ev)|3 :Nbib5Us l<2QǨܿ3X*QADaR`LEE0 `J"2I1u wwUaڄ4 ;`zknb܇ s!@jC䘐L/4%d'MskZMW-uu^d]F#ja`KgCCzrb._\./k0H+㨴s.7WWWXOq8 SbwF8gsM(|7_pm׵ҨL*əy%W.--[Jq RɌX[~hc ޴e*+?<ԥͺHiQ.P(Dt[!q9s~+3߼ahwf26c,`oL`b_|y+X ^:DMutV~څԕIyiQQ&SzϦM]NNNߔNoNu#P&+kZ_W\ EA"Yh :4_p.Np}-˹3o~dBR)}GQB!QT.3kZVGU20wlf[.c.,+/n2bbIXd ~Ζ8P~snA~p_^2(u4T.{+ezOgo _(0t={4/\hkѷ33kא0.peY x-WJPvߓe"VȐ@Qx nH$҂jg| Ep4$1|rۼI[n8FLL2q2Ⱦ]Xb~Fˆ8fy1> 4i*a0sٖE2Ӱ tg`ADG"P0$`&c赭C=ͭ')6 _}j,OV ⑃6Q$u6& =vȃ7R&,UEԘr B\crIz`z0TԅF?+eξou|zrl r~]o͋ޮd6]C< U[Uj՞|4ɣB!Րf 9]_ -'w~(+d֯mL&kؒ"BILkN?zfiOu[;y,KH꺖_L7(3iݠk:j(B#@`b@^`U9`Ĉg1pyـ#QuP߶g~S'2|.{kgr՚%쑱r['@|ͽF:4 ) sa+bb IZ8 ԰mLTLS0B)/>X s)gV tr؇/}h`SlvEBz:H *fPFbSTC`:#0i|"V-wVz9^ґJq;R R5] 3/X3bVQa3JDDOw8mǝFF&PjSV9| #Ӿ5S0DSØDL4f4R};{z[tգOC )*=UPXC[~.=\Pʵvw{?^ T/$:]ؒC-A5]sYEfH67M;V +Sf}7}`j~}=_ n[X6ʦ;fW(Fmp ( PULh#Q `fD>j} <[aNHFf~dd_[¡J%{f<+R !6)6KH7f!۴gWmEQ"ȱThc&6!҇I*ۚ$rYnDJ$3spg?&ѰI(4``8Xp.Ƶ]HZ5׸Rï6ޗ20ɟ-^,bU2dSru5hx tD׭Vj`5@Z Qbn ,tQCç/8$@[ i~K!TqEmz B50)UaCE`z<j \X7B{N &)lѭ~;qy▛T&[oPF7$d;\)UpPQ ԆQGQ$x*IलD{4EEjs<4{X1MNO)R(255tld]c%%@XSUydߦp OD1rBUJ Mȝj}!~;< !V+zOWx|&eÑj:" rŅ`gC(G2 0sbD:GNYw2\+? wff,_*xeWLb19PO> ,J\pf*~L(+ap%%QgwwAndX`_S XDR)r!3 VNAsxzŷ}z3|SG"N:VA}puWvJ`@XRGU!05@w%@_@8pTh,GFUp j,l@KlDfP BZ+&LB >_r; 2RǮ8'*z;7w`Vlt0+ TI;CAL!CFժF75ZZbTE`N:5A2JkNX(m!s d-QVaT`f{wnP cuXρӥʢl?QkP}=(7=qp2T*zkO\yդ*'a5V.r+%㖸WAvElH\JyHe79eWgh1cu~KOsS|/;|e]W"bN4+Tre1$ ob3*g0\}E#i,┞"(Cm^U+!H V@jd)p! ,.+8 v a [F\_nǣ^S ?fڿ<>%Ak3;)@ J(d4x0.qrjծծs$`h49X5_<+z6 ̱ Mrܵ,DE JE0,[1|98Rzpw,Ζ0B}gpHn 5HyǵtqY~`?HցE֗*+heYZVSCJ<_DYp`re=SrWW;Ci-6wP(p\Os+5~]\p^ŨXr8ߪ$i .y\>0lʈmTÆAX呾Wo!-ZER'#R1cӍoU1j\7_ 6: `^ nQRy|8+#m>X}}֎q9"\Vgwv?J_,& wyDJ] PgQ >I#7 Ͻ eUFn#@-€;Z@1TYȃ\v]|x7Dcm 0eUAz-H5[ ǁ[U(Q0 |? NM\eVg`SzH58'Ysn15WZHb4H+-&qU%֭\uc I`.w gu\HhpRym\2BP!(je^#X̄DDpܺo=UjŪղ%01B ѫ{@Z7d~0SyżsUM➵Y~*cd`O4_@ X] L1wi2>mBaUS $A}1``oI^ .F-B&ד1xŵbHmYE4L 6=k^^o5X%qY(Q" CAS0_p8DnrF뀪$tz^^Đah@B3pU%HW6uCk% >  ~!d\'23 7YR *&X=o^)Wh<.a J-ffT1.jTa Zr3Z,Mgs38I!1XZFM.waGʐgH@b="|ߚ8jj?nȂ 40Le"D#X8}RȳT\F|j2:=MFbMl95ꔵfYpK`]b+7`G uJJK ~&o2ti x4(EXDܚ= u#BAkҚM|/ȲT: a,p 86X%JBQsx޲`EoGQ& Y{H#$nե 8j1^jT 1G#( ^_4IM4•נȫzGetyv!ݯ롍X tS]r-'skkkԓO=pCZ _W/ۆq]R.WWW!}=,A0X @)\̧v*GBFF*5*::I۟bs,K&PQ] < R[k2'%K k ĖE,3Uqd+aP@@PYkjF'q u`Etj(Qr)"3y $`K wj30/Tl ^Vΰ9&r?LC.g[:%)wQ x\q`\nnRWٞ!qQ(d,,s4,&zS՚?56M[vӘ0?qsaݓotL9Vԃ{^;7<6bC{"w]$h:`9EfuE4rlOy2em4421^~]vGq(E PhX"Vp$t/ t4r#q_l"+e#_OK7oV](Yk>[VCM taj|&&E@ YRdy6-G=R (/zSҩc5/D\qLjn_L'_P5 {y\S(@$E};FAfUrvp%`MVxH4uM0Ec~l;Bh%kzЧjK UG { V4[߼ڛw7gtp˶-MeE8 :s eʔ7!!&+8AW l+蕫koJds0珏M?~ljnHw5Aw)ցp,J4`97.?zo1 $KXf?Z$#fA GNzKnA3aZvbdR޾?W.wi ؔAMߜ\ giEF'ANmDJnNg ,hdžiYzn~XmRoؒXr )` NW\d *Dt<?6 Vݵs# ҟZ^/3U׫Ј Dl\ 2Lbٗ*,ђhj'osɻ[Gz++]/& ba QIɄȨ(HR²ho!ӳ?P" cb|W(X Wݾ?@ hAcUqYG}X]^,Ic  %A ?`Kn{_1orf&:>\޵?tBà*??p:"XQ*9xN"zoOuoDkS]a#K~l8d$aV75 JCeVSB#>zPar ?} +爐o 깇hEur_ymةll#UEѨdYǕh9baڃ@e3 #8fR\ȍ=N=s79uݡ;/\@w<5ڄU}CJ{+ͦICF]-#yVmGqS6>B^%C ӱiћgW d-ǯ|$u l b} SېbٟG~Tww7SH)ki L6ׯ $^hnB< F(4U#`Lьʉ#:G[]M{:23 y5ܓO~>k4-KH %Z6{ &n8 G 1 62ã#w{ócGܷo]m_ O{/_ݻS0o}ZD^ KXB>;g,㑟̅AO>-j4\aʣXE`gS>Ӎ}pYÑU4 Дޗ@~Oo;WߴAWŃ׏Ġ`4JHH>aZZOҴqk.4=ϜN_@w=Jǯ꥿.7?Ç:[+]q\ml|SPHCȆÀ+A/{]Jdn!N6QC1;N3E4ĥeaܑ{o~ԽP([H$&e{DT @ޝ:ߣvO9HiD4&Sk3|ӑsgTPϏΝ5>SIO=JFL' c`ɇȇ?/˫alի~c'OTHfzGOUji"Es#Ǥ~|E B4x]K+K._rELMԅs'޼0'իřS5wB ҤA]>thrp 5 }x%qڛo?qlxJWVZZZɘ|bV9˽ie~"kn$=]97dD}V*j+ϝ&$ڍ߮;xe]iZZ0.C1!hhN;L*#IX7 L>1>T+@Il1%,sc54W4BX(DjY^uF&]s{pc=HjdYЮ~X\:lj9yzHT_vpAUt}M h@-9 {T^h X7C{rC]eX$)d -,V,gaɞ_p/\b{c/HK"֐(*DT,t'o+슼?uYIENDB`gav-0.9.1/themes/unnamed/plfl.png000066400000000000000000000134611423175241600166670ustar00rootroot00000000000000PNG  IHDR<4֯[gAMA abKGD pHYs  d_tIME!IDATxŚyUu?twzW C-T@MIڥVL;!Y+NǕrN T Ѩ$ THQUTQӫzo8CUC!du}w={8{AJ9NrH#*JB)J.Vu_떻eg-ιެz*75#QsUF]TϘce)B.N!CBҁst ϕ\<gQH@*x:pՊ_R*9!ҦOpڨ"9ZASE>-uc2;iŐk Co9йdbC_y{uAe; =y/ǖ6Qcniwv*GxxOk4,w ځTs BNR|VUe,έ2o?>۷[`Lc%A)5CQ̺aGќ~p4?Yi&@o}ls~#1/bNmbے)1ABwDo\`G! )o*j,DžX{ 6!PC /~Ro !|J2RȧGl:iNQSXiTH+|2'ssyI2*JxXT$Ā g2|05:3lø 0\&Q҂M 7sw1iyJ]fϖ{_el`k91*T=N:ELx"pa]>𮿧_1 GqL .e!1a'f]BIz n@]f7$i* zd(E!lԕXיHzjPŒiYxF^˿0Z0ЫfA)%Y&*M@f ls>BW`Hh\!:2j{ӈ9C~LQU4m i ?;̘a׻|㦯q!<&W$ }E`Ǿ|%xթr* >Yh,R! B&Iz*`A90 F6y$ LO3dIc2 R[_%4b%`PG9-SCitU"x`c,56?-ˊ7dt H>#嶣;M^{fL3Ѳs\ɋ H*E1\l =$s%FJ. ñ2HmT&a Rk-ʒG<@]\(buSٗAa`F2m|:htL t~I"e=? YwL22z߇d(#G$k\a泟a>~%a!~YḱwTb;R"VLYL9ٴg̕^J64؃g_p"mtrv6a^=kNTZ,/ ӳU6&CGG`2g^Dͮc!l2VI|1)vtAƘ'%>SH.\X] i-g̕>"2h^QMDPZT*6iVBV"& ޅJ}J Cş|;n{t6ߜ0=ˆ0^0iA[)ڌcl3υL3Ku+Me`Υp cܱ48 AXydzw4u3h/n5A,`#Z9<'lGx]IK!OKimД6i޺fIGk =fm˚$uw@d~ h}rHfEL/zN3]2-Zth]0qxM ?+o?ྯ?C\6 ;p>>y(=R/d(_;TH{!:LFe 7c`*[zwKtkĘ~FN{oXIN@ѣOB܍`ȟJ~9\əOXK8RKwo~LAѣGpSG4$?3W7 yKS]/օٗ|u|w9ڈB`G0 K/AEH(U4c`xJgٴ6'rEkΜ"6MRV!ʒǀ1X!=Y٤q/E!NY(wtEBL }|<$7I<;sVlwǣ >ͫǎHjw|;Wqޚ㑝W8er"X`BpB1̐ pǏ:Y;$\ij8w9' IS9\A_FqX!91uG]g_˜,7ZOm~MJqM0AykPcL2YnܠmX>eH,I ˘]~~eq4X-|ٓ+z<Gk:bfvq&Ip"Y'iHE..z ߗ7F AT"P Z:QJY 0ESP_\meÍ_@eIӞ&{^ȷ*#)#'6qC-S&)&ķAOrcMYT)Q y|ʮBL5L# 4u’sERp5+k,uXi8gٹm(xIN+s{[ܷݤ:7=8w%jQ*%u|/[kUx\,8eh U"BR¡08@f?s7~rka#b,KqձJTH'x8R@ 3I}9o$q}IY_eD?A۬H;K!{ZO&zUbhN!E@HT`eegAEsgrރ)dgx"*yԇxGpuZCaB{,`i4X)8' o4ox9y)*I*ľCg'أI%pN|;=>!8A8)!9Q>.r(-Oҙ⛞C*;+Mf7ӧ%3oԸ#D}8m<;; l;j8sǓ~*zzH wi‰GϝhfnW̓7_'ba᳸9r&&iaTf4Kӆg&(sn0ĩ :eslH"tk&/Y.︓s兦÷+| \9j['+ttU\NxY_o:/{]xrB^PX [Z[?BD1gLROӷ>!w^̳UY Oz*1|U+nKOAjV$JF-N {#Hqz]fVR.\ q ChG*CW]a(֭(hh4``D(=6)3QaWVb'l/enpT*YdH/˜eD<~[0އ}dkOOIz4TFZrzh6:FW|f篝`"u\2R0YKdRUtLLTzYuV2CU`~xFQP=-/<|ixJ"NL1t8l47gW LpZzVw g'eBRjtD4uKhE_y4KG̳d@#%(JH $=8ՠI&p HTK4Z}$##%ÒyMiЛCr X|1E\fuB3|NJ87+(_Q)^( t=jm-}I+%0Az!Dc')X# [avrhorKh#XgIEƎAdL'oRSj‘=h hN=tڧ?X艧I/a^Hkb($-;(3ȕA jUH{T{ h{>auL-qF+@J2Cez1C+`XN EyUNGrQs=*8)b^aW]tA%[ w=""|SƑR'GxmFX+|@p&`%1d+YP,4|^haz(N|t%|~c#$#tC؞fJ(,Zg( \QcI1G(  \l/wv8- [͝x.vGG& %hc+#PR!HD 8H |0jo\.uj`8񬚮S$x44_M4z 6NgX3c 9pOiD=B%i_eI gWKܠ|NxUFEͦ2z=<<(a&[ͬ1LyL-qƯҮ9w}HgؑbɃpuD8QEtnXuFj'^ʕ^h AA`1>]w~$e#jeMBeI$t>9ɐ7-N*ʧ(_]'U_ļI20p \5j=QWJDXZdd4ڬ|YYhBNqLWQbyO}{~t}ٚђ`U )NI$@9L)kEJyh־h5iM+-ǃKY )"itX`I=t:(0ƐeٿNkrE-y[^j* K;D*%5^x?aF7li#EOJ@߰|DP7~qw0T\/̑mL t )3p/|\+*d}P}p$B<"_/~˔N*e!K2qa*t]ݿ ^0fQ.ń`\Hzhsjֆh e*;:x'߼F=okunl H(.UYzB\&4R$8CY0_FM 19ՙ]4&lf3ÀИn3c:s#+@v%i-mk|b!v\2/=M|X7Ux:]΃(⋷~%J8*,_@e#L. |kl1[6] DtkuHJk̉\+ۄ Z8u UsY}892=Oz>?u*N8WdnF7|]7pdt@[t>D+2*rXy=8@k(5UsJBX4#ֲdҲcI z(Ch,YZ mR[FYr{0y=xU_}o5Q(,SLHw)jEGGAVX PmFyvAce*!_JJ )4H,1-;+4l:aAx#1eoz~ .o&HƄIBl'ȗ%@8D]Lrx'la~q q6Ìe6ݔ#EO;6gvv5rSe@`:j''S!i6 +Hs4 Pvpv3 ެL-&#j,iBFsv7+S% i q E.;rB <)_G8<0.gx̋ =-z? Z ?fG+qdBT0 SU6 hn7s"w޶FvỾu>N~:M5%*[y__NUy=Hujs~w#ihc3hc"Xk _tɭ!51SXf:saTNxA3;Z7vߞӚ_~᧹??DBȰ꟢)&s_}2 >Q8BtGKS( Fe&bwgjߏ{7 Ӥ(]TmvϠmĮ-h_B(NnSc{U^G^]P %C~y` =NA09LFpy5IY8n1t0V(}{lbYu Y_E =@ O^,◾k\ Q/lw>= (8oO֢e Jr  $'{;Ou6Xgƅ gl7!c+n=vVR;{?e*iRfYB 8@k e~l` ёm۩q^qb>> +U)9_zS9',vo7Q\=־HLl!*;8L;U֎¿} z%Q q^w>na$ ۞V|ml*ܙIqg:֕)R+~A |`P@!x8~ͫ8FrOYW$>م3W ? LFIlP^qk8!U&hF Ex9Vt]^}yXuՍH=ya$Oõ\L}БYAމƒKwBN %'x/8%g8%g!7l⿌\5l+&O0+kgOPt.E 8W<-8}\q WN1Sx8>w5&PYѹڀ_'=hO=וG ^㴹bCka`k'QDmx;"~)O(vt0*o"$ıg;]^>F/}UORlY'O?)9xnAŁ'KEq,%hpPM݅.泛䪅pS|rF lc-;(L7c: tU曐y`3\Ҥk$(PAx@dHY|zGcM}[R D0%XrP{k/>Bu~+V*W\_u-ᝳDғ]Tj5jM͑N!G;p&G@X7(ʜFXP#a. `R W ~E2hXNv)5U|d@[P!%q,c\ս$γI ^7!%9mOIs*.NVkE0Q]iS1IC@,v'q1Soۆad¢mq5g_f.oAy}\8O_6JS2qV` LPjRh5α,}Wtg}r$3R`"䌘׬`OƎ!_aKm}̎یֆ(b؅SڗXHV:50^@.Lߵ9Nt!SˎS/F.[YZj:@ER RJ=5I:rn邌zt]ԙ,]]#088x =Z~zBϹ'wwo;wX /AьӇ _AX?D$lȻ )!3Bn%y"s6LŤQ;[Řz+օ.\xJ~h:$9[^Q%sM:z>E3'zG!jqBX "yC9P _qH&z}0YTw,Fج@)tF,C_A4ncKh&#3yh jo )X?M"W >WlH. x8 |܍~ x"^6 e:4Z9sU6_;[*Dl ayuXuѥDbg#X>vkٞpl !hf"T!<፲PXX jxfVo;ږɦZ'UgoXcs:{& "UՕeu"3s$ }n^3Ge89b&rɓZ&P?qWA3`hSTBB\FluRxKJSV&W bq:ڑU; *J#m *DJ|76vXȵGzU nRq:G>x+OL>;!&=-OqE)qO<@!) XMRp)AE-g   {4_3E!fU hQ݇/;S\/m@u'v3*suk^ڎCF6o!f ݔtR #)q`/wIrrakmd\'<58gno6q8rh $cǐxсScOlQv׎d1'x;{q1"ݰavOc6Wܒly,\t5>͗xre~n&@MC|Ro._^/"$JJYߟaP}k2/t*]KN?۹gg3Zkhd$oo"kD?G,`zt-Y}l%B ! O;Bhh2}'AncxgzDZ6=Ci%^]X¦s/ix"t󙩚y  x'?uJ[;g/Pl 1i, #L ",;ojAIH/V4K)*4YrIB63jySRL$x">KOQu T[BPn>Vik/ 6s ~w|-ʦ+;VkV'(+<+cD~ j4D#n9y ";X rUZٜwN-ҍq[s)70a/N K ,wB6Ͱ?J,NlVt˱&]s7oX\/V~M^Q'dg>tDPm;Fc\˪E Zzb6+eX1եDClƻJ랜|EeӖE;rYȩ|߸7zD$׈hCç  HKKM(A%;^(%i c3i=p}T={J3ݺV2?|D4'sLܰdjTDpS{:;==͏-NEwJVz$f"  tĩ2]@|| $%HhJ8Dn+"w>CT* *7۔j-: =vaAXL-}9?9Ǒ{qWC*=t&dUm@'T~/\DXpM]?=svZc_xBiA4/miÃm Cuuul6\vtצ1PQq+ݙ3c*/æw<#:E}hb&S;=Z$}Z+5Bu ~  MM666p8ഗWnkrtDȡ!<wŕ?9gd rףΜ1׶mX"dY3*c1^{h~ɏ=]\-,>ց?ym]l68???/H$ D&wjtgm{q zS/mrxA0 A qW F)`"jN.uOGcݎՖXlTs򍏥q* E*}:99y„NprDX,j{z^ȏA@?'"fϞMфB!l0h̀L[.ijؐnƾlG(9>E˿zr}ptaEk݇A/oIڊzOyE+2@RjyW+Ѕ6s(ӹ"᱌`R{Ox#uwyyz߆Z"Ri[{R&3"'1 xQ߄`8\55s4p?c9Sf t-J!q8,!ܡ*0yW*ӦD 'qGΈ!55C@pu14&.RkqFʂRV'Er׈T"L}0msCDrUZb$djr`qMѭѸbX7,hflV.&&F&  f{X83M6DS2%x;`Ohb20酉`VoDܐk^P(tz`X NzNZ6L&ӹs4 !d5;kWm89!ڼݙA!""mm?p b oyL.0qi!KSY$Ƚy]O ?!f0B |l6C.}2T}h;tzỶ4Z_[4Mm$٢3YVŴIV7*:""4{+nj%P~S@yCG0Lg.D2gV6HDl6$yC67þJEݿ%KDX!X eɇϯY8QHԅ£edl ixХ !M xAH=1"r2?|cJMI68~LHH:sLoj]!9 ە &GrmX (>ø6#HڐpZ=w}JyiGHXI( mn߅&ArE `O1Z9ZugFL攄ybޔ9 X{ߞčVȀlv2?׫f:f3W'2oCvvvvtU{kuu+څ2D(RcSBm`ztf*p#sSxW1bDbL'*hݭ\tm;׵܂S0bVR"1 q#22qβeO_p).XԗVι{Qop`rgNMB X&P ^9@͛ljf{i7|(t'>ܢ8TZSQm\ޯӟFCbMR Cctt@]\|7;Sڱo+ $6/}ܡg؄;w.h b9fYM&ۿڻ(3sߗF4$[bNoZS^ʮZ;1񺜲kwq\rlĆ0AЁno=oXhtحKy{5#w:'Ou6ԕ|> xR 2I'xdD R>mmU% ?A޽رc ]WԖy#tMFhmu5^?0@"UeIyx͛AXMMLC-VΆG"2T0G>00?bPd("U>}4B%(XysaӍ.v,N7?pAhvƅ4P#" mܸuuuߒ Y?י]jj׿gK{DptXd,9qD# P]]] 07;vt/]rZ-RO^}$wJL& @y흝*:5 >|LV@[ހ###w5~<'.i_RnZ㑍_tWA׭_rrm/CѿvO73 RV9_ R#bXP wm%0m۶p8>5r2XD:bǿ̭j2@zgL̓3⹹O%_okC0]PH$^D_A-@}w>n򏆏1wIk@Hnݚm{j’\ Bт盚po}ҸZ>=H ϴ|XAYF6G}@,8W^o ޞ={v?ů 4[ş㤇N^kZ5%c 섕0 W$@"aa([~d6Rb* {c^(o\>s_ӊ"-Y9 ZWWW;kض4կD}xy_$eI\J%wsP(G]I 9<PbADp\^8xo֜^|R+NhZ}䵟{OSPgXMJxbWvmv!(7>[(P?Fw{o'2V ^ _wP]'R( }b4Fį!3*X,&\pNw_$qY..URjHT__a`]Q]3zo]E+SW|`Bb?-R*ws E5tD%t|4ml_4}à\[**g%@G5 efB$H쎺?9 SCИd A/rEpfOG gEH‹'coi'D*VɅXˎUJ/7@~EŎuq\G.>p@YL 4n{]t:BIBfIf h ]{ug`zvVRAATm(U9/>jcƪs=622$*A]J `2`LzF"!8B$Dg è{}\LɴFQԖODBD^>%$RbV TSh}Y$R9Xȿө_WM'~vN,j* |4.*TYY_lDK\C}\J9dndD"qLǩ;tAr({y709,[/zMdVh\3$N-r/ݶmCNVf{W>R|?vXG|kO DqJJeBmjbC N?m'ciD$)Cv`>hQ'[d8 5^r> >G,kpgAĄ'.=X\UGnϖGG 6ɝ|E*#\.#{Co貥e.2MZz* G$Jht?GNh@kɘrf) ӚekI i`7!Vփn5[%^UzW,8BaAbb} @-LKe,"ɉ訇8%C&5C#3[&GQ:}=E+Fl=90h빪}B a˯%S(gƐ40 ]]~i7ұIfyʭmޔj3;t}LP<>Ld(<GfgsZG{('AAQo#vC:*euRҖ@ ~NGEbdbEGШHML_.ި`}$Kdih$~۽tf\~s2=z[\HʧVd&n ocby>m+&WFlVKQ 4!n/"t@x@Z/ܾḁeN[32JG"D"b7M+,ld2JcsOe<.,ƴtg 3e %"! ql. |H͔ѵ*Ĕl'ǯzz6mTs9 J#}Mlz#t?Ơg s-Is4#߹vKqQ(Z5Bd8(l6Va5[e= a$+e+ cDN79ןv/^J:7zC3lC}.*"SoXz6zY"~9/L\[v3inD8%ިQSٞVwH`s("ׄ<+ԝe-h -Y1AuIj$~ɬקs] ~*@Xl+qq:=-0He|{Q?X2IL8P&c`lX전'e:Kϵ%̉ 33Oì:ij+r(3=&HVseC-~WL' #C<ޚrM\cv6TTGwiw,)@qAtk@zeSXWNsj5e0I+NL%NQӇfsIC# nt R-!Z}-&MբL2V0dF0B32g k ;]FZ|| sǞË:k=L#Uv?" PlqcBKsTֺanio,'.JllBfvLNR$1r{àv`iٍ*:S 0}Mf y-uK:Ja`)ed2b`HQ\b1-yW3Y&X{dz 7x4bҍyD S4Q 6/J@ƽeMDf,,nC/R dFG޶w8) *]6-h(/VU3P8gC]}Xt9vsVj%ubfow `_=T*n'y W*&>y֕*AI.`T)&`\[^t4/S{XPkڔ`; 2唗6"6!_^64Pfi^ZRy">{ .ſtȸ=Lk/cX16 a_yCD"Y(c8z`/[H+7Sbі#"@ \t gYh%gasrS@ģw<V"33ZxG ͜- MBIENDB`gav-0.9.1/themes/unnamed/plml.psp000066400000000000000000000513661423175241600167220ustar00rootroot00000000000000Paint Shop Pro Image File ~BK..4<@@~BK ~FL ~BK8~FL~FLp=~FL~FL~BK~BK+~BK4~BKY K dJFIF,,C  !"$"$C+"1!1A"Qaq#2RB-!1AQ2aq"#C ?Z4ha௧WRPꡤjD ?sZK%AlNO @8#kI"(ZS0{215@savT~vbm-nX&j'0# @ U޸]6mKu5wĨ-+ C/gC89!h3®9 >2;ƴ|=UA^= XKF,)I[ʴ1Tyı2N$?z~&$tVEQKO< dN;TU'{Y}.۵( B JI,eR.uo{UfSO[I'Õ$8#dJMe+GBR'Yxۊ-J*Pҭx'6bְ| UU谖c̟{ϋԘrѣF9 /AK5uttgcL8i K Ͽ-Z(wBevsQG;.N31pAXXq^VHkjRAc Rq7 eTpq=mߪw(ZF 2@'dd{jOI ?$jA#y 7l޻sU=-hnZ)MTN%*Rg{ti13s`CT4hQ9hѣRIaziUgU5d<4q%Հp0[z̓tDsSD#kSz+lU=7PюQ ܼhõY_{fKQ^wnI54 RcNr=*-ԛp}]Cd 9#o4|*WflzBY=nqTT-[̴aTH\>LNn*z_p$H#Set[FraS=; UoIZ)Sô(^ =*.Xg6s9 q]5ֳe$5\i ð:I:#\` '[pWܠn]=ަ(G;-6j1 n s֋qqXZ#'RX =N>-ӭke2*`QQv5a Cܬ'up»ݡM''3u`w&ƷGAW(.`;U?G x'—|Ad+WaMqF6zKT d+2|%jO`ĤkPjʃ#?Iƣ{v-9O"|x=³qgm6ڊI#j!HЎ}1 [@+w#vܥlgږ;Use|Ʊ#rrHr@tɓoګ樢w䤡A 6ұb]!hjdi)d9e9Dy:sUwfnMYp)#'RHPLj'1ڬN4ӊk)ĮhѭI6XkEfxGyiYSpzZY]}?CF*@6@Ei̦$^c~|im]wZ:)%YPx֙Zyx$h匆F_ }8͸Fc{XS猅OZו^=/Wf} },URM n'# 㣤4$F3N34hѯdjHigc9q>w+]NƂ{d\)^I&cy$ C箵V:`GnLN1-U/UTSr)R0-pR=ctJ)ՒHHףF3AI'urFA-E.h$1'A H.: SPˋS=WM!hX:0ur_4U?JڷQۮy~#T:4?:i*3A2;:GJTUWLurf؀3<^OLp5s62qkm*;.9i9 K\n6Zf zn%ύ]5>1'HF7#Juvueo/a2~$SsV9dSG@4iJ{EO)G,5|lg;@{9JuӚRB+#8ѝUF'_*2<8y[ٌ77]bvRcA?HZEP&x9s^Z[[*n(ڣ1,o׾3M̍ 7۳w׭vEc āEa} @}+Y~(|6d|+ggihuad0T,Lv^e%ϒHx6}ZcG?R~)JQ4-b#;O{3Zkz?)~4b?)9R klC s4w܍;R+|UHn/Z0[;$f$3K8\g.wV&ъ߿pksʍbyX]yJRqJRL&:1Y(kDI|A>t5=ԽtKdBEEڙ_ϵZXP\LE[x~c7 }] eJCӽA{[S~D:mC ޽ vzMqЭu ƦXg;;jTRbS,NM bH؟ZB5)JJ!=-a O,PlǠcqYlzЍd&vu]m|ylǞGpu$q潣omBHGV3)ViMACjtfc&qK+@:#3vwlNΆ뜼T޹3z,"+6v9 [ԯ`*[f:[ÏqAcfdBx 7"@=k]V;YblZ9S3.S@kq=Xx-+'5rTm4>ZH$#X_Rf$tOcz ծ9FL ` 0 J>m/38o$3-r;.ֶ?m(@$צE7#CFLÃm[wUìgOa:!{sDG4;O&@:m&9r\"E!ɒI$^|~dD=F]M.Ab=Mp9r&1@%bE#]#2gG꼫dl9pnQ #bK&ʝÑӿ_s=1qe0!3 PD~k#\xcqH\ܐ;  0F]1mj̸mFȴkdNJ9%"Ib}ծ^cm f#X[31ſI}M~[+5+ (ߡ:}4jn(z־C oYtbxd?XmvזH}+$wFFgv%}I5ٮ:c+-quq Bu Q=AžLz$O14 {䤻{As#;{~0߮3o9p޷uR_'n*K!GTE%yGP JR!(;nJ Dӷ^BYjXn0dnݸⰬ0X%*A>*]el#b&cpƇN̴$,%%f(˾#~_iJ( q1wYaYA!vP?9M϶u^essIܪQJMzgͼ;(Bw;AQSI%s`ZTcH0xHeTgRtb=lbh,N>ҪE,.h Щ:5a!reGL$SuFS%Wh,f2"s_5^{'S#O}kJRhE;1_IdXΕK3s_xOIonND?Εp#q7XSaO<)Ӫ! hj螔.6,~Zǘvt3(G\5r yIv?'C+Q/e= ?^t$TcEFE/9H2ɽ~챌+'DԤQg\;*OAאqJRPՐDm VDf,Ř?5򔦈)D"~BKX5~BKLayer544~BK@0hx  MA೹~BK@0hx  ˼EA೹\ ~BK@0hx  ӼDA೹J<~BK9)4x1 g ?o~BK Promoted Selection14-4~BKZJx_HSQ̄L0LqL]n3M2< M̸++ %}C ]\?{=}=|;lEҦZ~βXeW[x dFge0V ~ii 'm|v vxc]&mۢɘUv f0Z6awv0޳S4==k Ƴ3 _dѯ8NX'tf[-'0ގٿ<2}}P^fluXs ;'/)q/8Nd&lwgiJ*{89JhMջtc5|.ItH #06-D5+0~yN0(!p72K~$ÝE!AQ*SY?"6B&wb"<&dgfλV^2^Gv\ mo3ޮP&|K8B{5(n)芄u_0k ?owT_`QSkom* e\3*Z]sEVjLemGj34f*BruӼC/UCˬк}p! : щn@jBYSqP1t>g:^ QK: @iNQBoX+{[VWs t x amݲ?qsPB=pAN'S@~GJvj%1`xBa_Hx}lssdM~,6g˒Yo~eee1c_1)|_?8BM3_@k1!^݁!T-9jK]PLV(J$Hia9@E_uL W[/̕WUJqC5 ̒fQbdJn:ZZ$YUx( ˏbWXk]\,^٫ߋ;H.1'ru[s~BKxNAÅXA"0jHPebP-!!$-11m dz&4Ge/Xva& טr:y?נ5b U,0Gfcx'O[ <~K4@[Q+ERc&_Op9'5E1%:x-`+tKb+P8-|>:Ԏue8%ZJ&pByֲRyp8TmHw,x {ӳ+ZT7[kզtk7L4D vGo_T]Pѻ4Pl s " %"L, !3Y7x\Q9(QuD=ϲ<4/GOt';|0FtK8Oо ^|m ~4w/-FkK?kwJxQ)ǧ2#n.WW3`ydLjƉ41<մ_a3lJ@sRj\+W1d񠫣:n'h3(gF!WѾ :, ѱ>/rŖ!3P!ΜhݸdAjbn[WI'ik}nDyCUG5KL$D{ݘ3Sb~BK Promoted SelectionBp3.2~BKG7x_HSQS1ܘg+V6]Y[e\U)ˠAтn=LÐ$|a@AA{ܵԺ>s?܋,wuStQn^";\!GBj쭔2%>::L7?v3'm{yփк*KO:ؖV j;C9==Xz2lW 1ƜZ[W3nQ+Jki# &FZM[]絾Ǡ7lP&ih,x8 *o2 ա24 u*2bj鷻X%rzxz,TjښbOY{箧YP };wE> EL~BK6&xKZQb[Y.[Vh,R{2[݆Z!nH$jb B!_'5~ {s}?nqree}%lB8zq6-B HǶfsЯ<+h 7}hj+v~i|wcia x<.E8@{38|27G zWʕI$c fR0<:x9ϖ<x,N:(XvO_FȌ1ցgLt}Ty3}5uZ4rȻ$q|huSDD M/HHn G~wZyyȹVf`/ǬTћ#^}Zq{pl(IY˲^c߂݊7$I^]͘Ðo=(,))t14,ˡZ垆/9;ڣ築1ÎKgX,:0βCym :'& 3ϰyN/Bi;۝ fB?Ͳt,c*FhK׈43'`Ǡa~n$5Bԍ b[R^9<ڴAZl4}@4Tv˩ Z @EޤjA3i^< eB]: u}P)/^}ϷگkzpQ~8t`p92~Y/Ͽ )@%ZG,(C[2!iw`PHދC Yd )Q+ QS2gJ~)ÙMk27骖<S}VBk Nzg<絧<HKC+ =;Y?,MKMkrޮO\ᆯJɔr ZIei-$N= #4Zk%4fSSyjO.IFzLբ9QɃOSֶ3ܑeZO<|G6INp\iBglnA{ O^P]vs(K\7Bcj> ?hH6kc:[܏-8m.K]k(/_\tpwk:^r8:9+qcvb%a/U°7m#  =2; 1sM=;٨'SJ^<{tEDoCmgdVH`~BK  x-@!\ .\ p``0 Å `  3.l `0.=?v_`y.Y PȆG/Mܼ8Кg];Duv悃:SoLiv.'Z/xDc<imi(5Z]Z7E;UkA!glGƢkG҅X(h#3wGM & w,&u:xEŇ3o10.W)ECSo5vp^C>0B[)M5CRaǿZeoԽ@ke-oExQ֒TA@Sej -\,3ZWwZĐj33*nGϏ*msʶ@NƁҙ9 ș9diNM-3M#̐jei:nb "b?폡@AB vv{hww?. bynsK ۠p~YFQGo&'{}4!]n&Ij9?gvP?>aȊ)pX +n1 X/5g=9"p 1q,*:3CPYY5 קUbYQdjS*đAH\iO"7@d;s 3*%/ Զ\Y@*f2i7u-Ƴkkrޭ \'C)$U6ȉ !J4pxW{+JA->*{R%RXׁЁEK6NeRXIglsYD `?FFp?J@3(pvuBmxH,# uNhǒ_a;;,Skt9!;Fy@TjW 4L?cwU݋5/,ϤQƀ&w4b4`qP9N:7\K䄲0 )u4 "/:'M20ZJ+ ^I8y]l D2at}$^} t1i*ҭKc&'ww== U~BKZJxOAIrhA@A+TR,G.DZZ-6 ep+! GjQ.dQCĄ I05$$<̣ >gv}hvg>7 P"nDM>*IЉd% M ,OՑ?n.c4dEy>Ůdrde=Y0x--b ~']D'Y+kjh#:XlM8Nސ;YC61/+:9+xI:N\6`)KNUΣr(Fݷ9hqzU ZZRԋxJo$[[Se֨P˂$nin+J žLC|p56L۲'.NXꆻ~e4=HͩoT*!TIt]"I>jؓ(HJ,#ua|jp=,택-w*fh$˼(/?G9-"|,@r~BQHpyg 7W?l(&Y܂GJu%|f WW*YX}-{ W>o3v,jJ_ Gp]sBB&D^H ۻƕRJ)J s34W*y-U@Vlc$P]IL)otDcVC<. cVkwIf\JIj+^tu 6KS҅\ vjlXUv5X@E;M,k]\vqIyne~BKxKOA'>j***"*5DXE,A.-%iI jJH$=xlc?@=+,l'lffk' &D,hNs`$vIv|v~_z}[Y t#!(dПlgD锈Q +i ;Y_kϹW@,w6m6#pۭyxqj1ܲsm-kﮞvV<;zgܶB[B }v/BΒə $_uc8r`FJyB1uf/?Z:9oq/״|TYX.Q{Oq|L 66%Pf`߁6U=$WtG=g4Dn)vPåVwxrE#Oݱ*F<,t䝾еДa+>_d H&Wi>l K&bYbéGt[DRq,$ugdo J(#j Gn 5 Rm`!5:(*qDU$(C65A i #%/ |~BKK;I x!p0sWQQQ{wb11111@ULT & OL D1@<@  QQ-i4I^|>ԲB֬SKȕt+GJðzf7AFǦU$5=f%C=~istX+Ttj p~(.*/"g"ڛSoOopʴ(|;)[Y2X NuONŖX|a둈_Q>o>܈`224q6$˞]g+/ևoK!k 5=֠~E6-w̙M `5gaYWo}dr ac׿V0X[3ı4/:#V)8/X#>cOQ>ۤ,2#t\L|re,ZBQhT nj@fzCWtӱ8W ba3$2}/ St5\h LڣQv,Fm(d"qoPƺ]:gΜIN ?OejX0 =vLeIJ2~lbSᅳ&{esmY,[)Ktcgk|)a Wt9=ԕg[L%Fj-Di̺oil<2̅<8O3uOuAW.#1%ļV?X)M7{K<֒ A[99n`ddPuekvn5%zc4B6$c0(nbCS( ԫ bt+~mNX o('˞k-SգْqYRK4_9j$@[jO \E~~BK}xKLAGh4Bk_ZgiëQlX]4AB$FL65cHlb⁤=xg,,3+'dyw~@5%W {۰` B~@ M  =丙IOؤ*ۏo&U1p%М M\q10<7?Ch qM'sϹ*("NϺ-NG2N Xۧ&*g-D5K Ԓ˸ɉK+naͿy}@^X^ɪ5iV\c@}v᳡m쯙p 2Aal,! r"6Fp !6@- &mOAm𴾈x89TeP<`ϊUn/gΧ+IH8G.J (}! n;gI`̈́Pэ \sKoգ0W{HXHD7(~' ӁC e+䰷FXVҖ,+V4? _ڲP{M!$\9|0ĭ UW\OڋFE`n4bIt%~ƭ$ULU[P'eH/u2,xM{GʖFaCL 77GFKNQǬfy16pK 3xG<#m Q}N<.C8~˽ BRh dp:Pl"2>P3V6v 5)}1W6%GM])"!1}:flNڝ/ ݊~BK`P}xKOQI_iU`qlE, ETQ(ZGێ6GJQ%ZCBjMCCE]tѥ .f3Xi/{P܈rn&:b.Ɲ&007cTGw6lK/<,x.G<3Snmuzؑ mE },QՀnI $JDgǒ_uYSa41bGhK)AB<]ptl- CqFMP۔Ptt˘>-f M#@ t[̦EMjz-LDŽc1(qDOcTR}R 1BQd۽Ɖ%{ksŪ9+t#Jۉ핈_$pZB(a{')ʁVzѐԡzzh͕£v2BOx Ҁmm)v>h_ڠ=澔ms xn! P!p-`t̳񋳉e=I*T2~A&3'w*Y{̧uwZt!T&K /S,;߯m;;ތ,眝B:YaӚqj}iZR߭>nK/ /qTٳ:'OzO'SD ۳πMEw|TyeVizybT SZl^ 0ӗ*˲t6Z$!!A)$6WwTBA۝mQɸ 4\h&R2 R_~* ~aH{ @jnP0~BKyix|@  PB`x!(^A /B!P B0 P B޻K=sX3Y'F;a1E6@0hAꇬkZe?0m%wC 0MJ` Cs*Ah \_{Uځ&H el9c3d<_h7a29ӡ Mu H.W-CӜC^ӻ*$Μk8BWch{mɁ<<|H+Iq~DuK浯䱄[MQM\4N""M hGg4v'ı{,.%QP*Zi/[?Y!7N!<3kuNNLMO_H_xI4z~HS|&,MontȦySb_iq9™v4z֗# ^w=[㬈G@Yv/߁DkETw-(:rq-*YiL~@A *>/_uG"tfPHgav-0.9.1/themes/unnamed/plmr.png000066400000000000000000000230671423175241600167070ustar00rootroot00000000000000PNG  IHDR4;N"gtIME 2% pHYs B4gAMA a%IDATx[ Tg@XAEqh[k;mNoujֶ鹵۝v?]fZ[+Up!@ @!d! o7sNry7.A~|ߗjFaK I bQ˰C~4jv7u#2f1{HP4/EBC! |T ~?~ Bi"N/K%U+C޾ÎXmD/M\v@P^`rҤAvBp-23y!\8r &os5P(T"W3VA)1)o6Hq7E#tI% H98AA,Gӛ"Y۲jњ^H :UfiGcYŇҒDQ:euRcX1RCzm$ ȷIJpb7Fi,$a`vC Ej}RN?o~ьwm7Yl #"L߫2|~a`'*Qj]DwĆ_ff3fP.ļO{d-ۏv\qrL0VRuHM 8,i4<hżcfp8I_36EW7wX5WTg/Zk7 8S|{Lv:yKܶK/].0RqPd<~NX R]_ߦTq2pԗS|Mmn$Ƅ_ͬ iRICTun;K3J98 9111h4'ٲBjm(N1'4O-v ,k޽C4Nm!3Bk+r*[P ,JRxJuWjbUT6g( 1"2Vevx ?R̾%=a]wdO#CᬔIDZS{\.$C5C[ [4hZ:}ꤧp8#=v8굗ߺ"t{L桭IloZJKK=m>%Ѡ!G7hw8fgg^[$k5wh_ A\$34&1M,9+^qB1h+<0rX$'v-}C;/pj8ǨI۫l @&L@awq Yꃻ~=6 <wyJbcu ]7O3%sGYCÈ<}𝙉޿c϶S{ **SĽ_Ȣc}qZ}q<6[rd o-:'NxW'1^6%quFQ۝.,i[5#w_$hI]}M}~(_4cMX~NK]e~VU muz<ijLzZ;fU&I[zk ޤnȃf^9NBH"~Q$S>"AhaO:ϲ4diSaUڑc҅?MrqmۍK}*LҦvמ8x|Y^i7@zhbK?Zޮ=2~iP+  ߲.8`pcvFV-6-UTtՒ" 7`2_ѩhWk٦3zϽ0@ҬMع!TkrV  a[U=vT.Saցo n/&4v// C6 +<G\.6 K]R\˟u@tݷ44d(miC)K1MC72MW%Er˼VUޭ}jsLQoloLiIj}LQzU2Aم5U?/Oz'."!ϥ0~QUëOCRWgE%lPzؽY5>r_*Iv`k]X "9fQ8uy3}C"oQfEO]W?4r=!F6nR!9MKmOt;9xQ+M*ĄKr.-(4TvpT*i 6fnsn_$x$_#h2Ar彩DI&&'Ύ%TH41ErUp=hns;5س2OldPĈTP\Ɔ-%Ć! 6XB?<_F E$4]W/T4~ d홎0 ?amJTmKwy;F# }}}Ri@@@```H*KH9K>-q$u8`FNI'ߙyNQȋx\p> G-+:XwbmNɫQ{>'h҆d3X@"BR=/2j1M3ڊL_riGwߥAͽBrWQT:j̢NnA###4L&tvv*dg¦$͝@~8O:{k ![RRt:N =cA[`|[nMk *qAOY+ eכ;8Q>ރrtBxilla*5** =|v ÍǷ{m- T!Z[Uw .>tMsw0uӮtjw%-ԂV"H8/ <,,88!H8Aqb e|o r^~}Fnz =2E׈!Os*2f#j[ZZ@`>oqϧ!sv]*k,W)THql[C.BB<haBQKիcR:F{ٌH!/~+F체hCCCϜ= iӨƨD;8Pfɽb3!5 _Z?tJ95죶3c2Rk*neb䡜"tө̬# 0Dla1,K祊D"JO2?? RHP_\Н]aN&uG]>|O<{Uрr9@ \*طs8L/W]R^nN訏jcxf8d0fnd2q'Z"iUjk?y;¿c')qI1(ldN~69997/6PpUJ]w ~Q2b VGGYqJ#E\pp~ڰ}$)11QV]-q)i>r8Aص0أfNw-{CC@Z+Jp8ھ4: nD:{/y= :P3wJCTԸyƗW^Y`B>E$@ 5(8x(˗/رOiKo\y>.nHSС5X A;*Cc-vH21 \6x.C:WC)Lљ.)Yԭ]}zNnPz!7N- `Opnt{#yim؛kD4\VS(?k_A =:0n˓=mG /d:4PRRP(¨p3nCQAڊ_9wUNW~zwL&t]2|%LRYDƪs.h6_Q{jO]k WE3B!w]fVYY:>ub`0{\5 XlM}UͩEVd|çkN+=G}jf4F3:G036>c;b¦*-Wm6vpRv[ vrA8ج c!h4#}4s! !a$4W]_5d̈́`R#ЀgdJBN tN ' n|.5[ ,sfp8Ӈg:e@F?<T3frLXfQ)GU toU&>  0,5yn$<[?dv?uo=tg LN]mDѴy mI4 {S6np\V}b/,9B˃ 6:bxBxyyy`Ae4c1GH,k~NBo>!OV (%kG?xwpIdU p|pyAvG "E"qbX 2-jkڴZ\I"VC,^L&-2YQ[[9= b) ƶ,~ rNBįj#^ϯtifAJ5E~Z`H:,ᬋ@qdӌ}y/}oGߜhh;>.O %%h46}Q^EZXIx",A hA.ӗfsʭj߾u zMbǺZ>{o]dx[6i~_$ИH*|!iX7 g6:&X6sԒ\\/ĴY7M_y%&эF3gtEú+g55 e# )f㿀#^Vab ,eq*]?[(orzFsU1(g#=~M`Lkk+ $W%/h` dp= 'QHoW )Nk@ 9?xc.:.PA[}>D"x<ږY=߷]ீ?xll(ҘTV\ދMWnwD/:sknq*+*yWS@ՅYI=veFsMU/~?v* %R~f 9럌{eWt;%woOTYu5e߻jԻuη/#ʺDb)fg:E lr20ų2}zsFE>ǯ~!0ueƪh{E6&R_WpHW?tv] 7g:SOځg/iQ w{9nN5y(>J),0_x9WʩmW)O-+*575;[`H&я5Ǐv 9ϦG-˺i7Qo؄מC8at}B*@N|̱J+Hdsd5wUkLO;nr2|bqhgjD.++O灻h Su4(QUÕ,JH ؏7G,tsڜJprQ|&S&ubqV"n~ɧ_>taǎE*?`>3ur~F3VE-_ks{nx,jǦ,44MN׸Ѵ)/uaxu|琈ȺU H&E<۶W_š hmnܡ*As(\|@%J #D8Y8ҼiC/h px (T5K* AF9c;[7d׍C-=t,<ʊݽnXOvy^؉lt#ΠCZ[>W;~L~ִT-?'qI"ԃFhA!jKϨ4.&H bXAi@^,H>Ɉ'6aoh)Tb!ۢr|6KItO~:UWYϵ_Q,& rs bCa [yd**Qi}O2ntk\)VFL/q] kID"Wq~nO4YH%$dKPhRC{[CDK=w\BXQ0 m:}V7J#W5*@5X4K~D{al/9T:D&CޡXˠӸX(P4Հ'UHǒ|A%EFb٩Zk4Ҙ&:B~mi$EƂr!*'wymqQ$gNEINm D"Z7Bcwa8.;FqkXmT&&ҽdEDB2GSݓ"WVW̖.kF߸jH<$3j=4ǬFAc(N$oTYT g2h/L hUy]$2p>y߱H >;勓C!#}&:Vj\:2`/҉ ږ%@chiq@ pX,wUW˷'\ZED<16bU 4sϥRi۷nXUW /pמ4E!cX0f?V4`Ly9ب/|{[)4g$GcnbSDGpĸϦJ>D3bRi\qr2:3&`+ȥ1)~o/d;m#A8(@Lr )v#7* `3;c)[#`(x k^Nj\s #!O#nֺ:/G j, 8|:&f:"2岇ى>y~49p)z7ZLnk%;dEB66PTPſgg^*)]\(c2>|cݸ+=mхLLǢQx0+hX)]Q".BkjhhY\ST_-0irlEnS d<Ԧ9Vzl)dֺ./9* EsD!9ǃD!XL&b\tLv&E lxM, gc'Ny 4<*p[ N+-_ PN4LS D7ǼSzIENDB`gav-0.9.1/themes/yisus/000077500000000000000000000000001423175241600147445ustar00rootroot00000000000000gav-0.9.1/themes/yisus/Font.png000066400000000000000000000236011423175241600163620ustar00rootroot00000000000000PNG  IHDR6tIME \u pHYs B4gAMA a'IDATxfEc9*R3P2YbAP 0s9~͞=/ܽ߿=zz{{zP q38Ϙ׿5|?Oܛ}{޳}ϻ:׹+\ o~>Oq3W|;)V9YΒzŹ}5yMO~][fg?{:%.QEg׍`[~ic>] ?~{Qi*z,_S2tAců~dh+ U_WȒV~ֹ|0YMu7 }=!Jcv{ClÆ nV;$ϻwEs?O><9u[*rp΅2mo{[qa%aHqʑ{?J^駟^ E(>(wSky =裏N~FiQ'>19>я_R:~wnƍ{>@iRүj"zWzگwqwXF׿l~|2Ʈ߱9.| 's8&'罩`>)OySG))]:w_#ַuG?:/}i)m:#H}o@5{w| -#dƬ1;'..:[WnW%^Toco+0t>wc3oB7>Ŷn[Y>CvZ _dO5W~+G^a{kǂ~]+_rhЖ6)zի|O^\~_;n"7Gʫr{g2uy^oX[0 }sS>gi~2'*?)̸v%b]vIky{&'P.Ǯ!O+OFN1~u\x_:U`ta4fr^)`śy{rG]oC_=fav٩2_l?ւ^քI@sr!6ً\"Iйo}+ 6@J ]1[@6ݕ|1 (R>4e'߹%뮻&C7 K71K9cw_? H!H[Qwx#ڔ򣝮(3IeEz쓚 "a~us3+^040'7EXAu["dw[+Nss ԡ`-ܜkwcg>39x@:Ÿr,%/)'#j i ]oG쟁5<|#>.EgB3g@zڋ,dfH^#݃={׼5JG9R>}~o{ۦ5N>oS2 FQxeWhTgwdD;Mm zr)u'ʇ^(º t2 U돞=0Xwm7֧>ԇ6=x8aد畆J;̃97` q }s|e=j+ez@UHz[ǘS[ec_[F`9nx/y8fz4o~]˶t+hLM+j˟g?Ʒ)~^?;MM9{1W tAg1<7;'m?E}\"oDmN ĺu.+"8꜀Q.$W}u{=dLڎ[$'֨|r\`EIv"N8Pۺc\c9Ɲp|\A+/~w.w!of n"k_MR&];7}8GUN:oNt)9&zf1+-p=c?U`Ǚ]ǀ9 ݀|0Jn^"8&lk:DO%a%/Ƽ?.acCD֪&M1Nt4wDziqy{z捥rA_#@M6XT7sڭo߈oxa^E^zKctq; H PLʆX:!:@G ie05?oܸASֵ4!VDP>C@`&1~SWч!Tv?3p9i9P KX~Nǘ܅sU}C#4JrR_}LQRtPz\VgJk;9Ʈ>se/Ҏ!-]ݔٜqԢ>85on#AW'"B 'HXW"R*V~ʈӜ󒯡ɡFڪ9o)Vv)_wOY0{^7>TEr\˿e`0!JcdZ1: (^Lc%3Rfy[ޒ~ƕD52cQ*T>'SOM{u{؟Chm>t^ \&``W_.;. "q[${lcc7ɟUviS4&_onJ0JI& Qw׏C0"Nw[d@p_>ssϘ}C?)hUdO}) F¼nLC0tzOx"=2q˚N!ٰ1uȢ?,Z}X:k]X&Dφ~SJ@.IS/ $>-yl[Z.(C%c +5AetA x허HP#25A< -}sfx$1 CY SU?#)  FH[cspP:)_Vꋶ`M[ƅ'tR:ʑN 4nODeuwZ?;ABY~0ǯnyg*ɡoY2u驁Vl}?""AƋ7OYʻUkTGDWܠ\pENy2@%pXٴ^>[ʾj] ]\n*@ Z?Q ?bUwM &NzKֶ#}zwľ+YLoy`rw&9׭IUz ym22ӵe`WfJ+???U.a=c?u`Y$n= aOAO4'Vz ˌ@qn^cy{odv]Vtߢsr/]yT)dQ]PDh}Yv" /| "\)R\6E-rCoLRBPFD cRDɡžhM* 8|y[3iוn5 }2J[klKi///j᝱?C ZIRe77Dh(9/1֕( 5 ߊ*lrxcUէ="!‘w߽}|}J}GU)Ĭd4wq}ۿ}4 Sd;yc4KcZ=va<֖J:DGk~~{9̗*É5$U2u\޾;F/23ls|WsM}MD&#'~nv)m,9$'G]g뮻&cOyrMVSJڶO {]N0>u[ܢO<1}*= zg- aσI3l5y?W~?h>EȘAL!,@aAnNI˳qXWjl/ˈoao]urEO`p-jyf.' !nT!p冇j`=ꨣҷM s=Yzq]{mDR@U}ۗ}^;pI>SCOxh 88`D1qjdY8PsvK}ѧΟy;9/uk"rOW#囀w""t(UR8;n0/">=C~?Oф8U{\xB6muTiw_N YC S*pC 'ÿ "}MHqEwmzjrO0dFNus٥m?܊clї(H*З Gsq0 1TN!Ǵ06l1+9ֳ0L),*iy)9SȯBL1?,Z肱7uzJGu51-)iREΓIn7\ӴK\CsMFڒ+QM]z};)Szjj_?(_y}U=R?=*Ծ(4/r8IJ@x:shC[҇8\}0i[ppZ9 :/jZ0:XGGR-P500}HqvB-&~mk|7Ek Dr3,Ev`f̭j?÷Uu?Oz]N9 Ըؤb b7_?J8>u#{i enWeX?AS sUF>|R^e ]BJ&c\N=oA]a.NDo~pz._c?E+_ ~lHW}Sǐ[-VtT:&`Q_7oؼ'-m.1ra9kqSg/LVc߰[<^6ldj{  jo( M׵5&{,޾0JVmӵmfql6a}ւ#0SI 裏NT=Hh lBL1Hsk^) ru̕xؤk۵_Bn+};.ȓ[T/ܿ2ƶ? /"\]EZ?1u1g4wU%77ptͿj7Tb|O%=^Uu<\FwXKM<ʶK]8d,cߵ=m025}wʼC5G90zX/>yR>Yl<׆x7ޡk&n#bÆ )H0v ?ݦW,͟9i:ȷA#' 0C >kwHV^{%R.߭8{27l 2LL%,Z7lii=0/nqfեF=/ЊcۛN쟳t }"d)]ciX: mJI@R^e^asȕkN88#SF"l[tq/9SNY]Qcݾcg̚~]ˍ7n{Cmg]K`<hSI}yhj;oSa-OeчXV򿺾L!5`߾%6:#:!\kG*w'{Z@ߛ7+,'qe$ kq-[v!=&2Mt| Ph?g>8`UvV/e0q5oS EoOهt)׵yט:%Bp.v`f8oZO1E[,Y侀K.(3̔(kK1/֚}X{O5[j[ݐu}YX ky<LE7|'[ƍw޹qS oR@kʾ#G< ˊ ~IENDB`gav-0.9.1/themes/yisus/FontInv.png000066400000000000000000000210461423175241600170400ustar00rootroot00000000000000PNG  IHDR6tIME v8 pHYs B4gAMA a!IDATxeUb``wDBEA[Q11G[1Fuf9ߍs7ַ{{lqӋum[NwS]߳~,ݻK|x^W~k^_rc]jAT/)w7 |+s kq+_8C_WSWb}n͚0aˆ]GL0a„ ?AwܱxֳU|K_Z,{WU޻<3?)p+>N0a„ Co,^Wo}׾ 2įE/zQ>[Vqԙg?٬CjOڎq͵/ ׆m~ nmW3Lo*}կ^r)^( [Z|_/PU8g0|(~E?EN+?zֳg; za,x3er M1H_ř|ں;|_;?˾.>Ou?zh\>g}6lS_C_nV.6mT;@Y;ˈk\ypr }~^x0EhҕTGH?ZGd|3ϵ! {0~tDr4{xh~A#Gf˕u5Cۜ3o;JQLJD?'7zc_X]oHǐ}eU <|ukg9ceƯ~2399Α=c@6l(N< Ox]Ny-8׹Uo~ώ'ߝGJ&?er?xFy"?ʵ_:?/7:;a<1biuQ!R|--b6լQgyk կ.m;$m> w9k&`o}[˨\*9yg P˨/)>z׻x`"߾׾V\-Gu(coX֭Y {Y>Fd_3̲&őGٹ)G׿;}%F 0J\.vr}{ ^cwo<7OW#b O{J5bNstt]{~y խnU<-D@V\B*w7i!8c[[|Vw/.E̖+ y5mρ_m׽UtfQ~Qv,J.Hjoeևo%XNuo]<(?xXg졪z/|a;;H;U򐇔X=q{Q:pTa笠Χ?tl/⤓N*coەe!??3&U^*'?lo2}e{>g7Gav]q ^oކ\o{{>_WO|4kX?"atPWdtD`.mҌfMt'4,7~KE7uK^r %~fmb?]2j,*/B$A7E1"t;c̄6#'?I#o~R1o|cM)OtA  8x{޳rcpGJ"2111C cMY靡i{.^c]֝߃=-yx9LO(S_@&ZS;2 ?i)xSf;|g@"}lӹ'ߝG-4):L?5C׵22cat|\YWƆ;2X "&,+f4-m]qk_0F+bZ~gs a9Ϣ,U )}k;Jh7Dn*X+~/Xf AMP.xIZ7Ki7ܣH 'B S+l_ Kz׻1_Z6)=[(cUN1~W }eq':<^b!J/{ӛT_ܩ_C]r㱥}{/7u0 Ku{_4\I_d=PGae^EQե[T.6p(>V>Z Gc"c{H\*BKUjPE1oё~ZM/'ݷ|J;ܽ7tӑ>|}a~ӟƟ o"Z+߭eVߡ'pBI+њw} pQ|6"P 5V{.=ſ"Қu ە )G.H_9`SCK{c|O8n{Sc%E8t=qjQ1bO[aQyTL׎g)[ʸ>Sf%.R{%%J=/1LP\COїa0+}d~Xe`s3ϻB;A{t ` @]fjA+2޺zDLWgՆy!&2&a BS%,gsC`))`P#L_'|cJPy#M"x*mڴHo9ucx{nnv3"x썫~lܸq^:XhCWHj|}ƞwK_-~7D*nq[^Rzh;y/Yځk`q!li'`:f{Sc682jh.FE݅f/34 {"TBRX7э=4+V﷏RJ\[썪 .;Sz7 u AH!wc9$aS=J a)W imqht'KRTAϥE2.GgC_LJ?ʝ#vǥ}tD1@6)u 1#kw; UamI[]9'G1?9ÌyG=+((G-r1Z'$Xs/"?vcaee*ە{Ϸ˹ZF>W>v~t-yV4a„8ByYAa#>O"Ljx;M`HIæcLC$ $,S4!xe;// BGuT)xyA`;.JTy&58E@PfCЇ6 fu۳"i㲏gU MxhCthyo]5=`vl0Mv{^1/2$e(NwM@iqД~VA p,YuKb״˽EGlذ1M^"J5ȥ?A?u_U~}<%\ D{SP2Rq93a$% *Mߟ^6>O&`yde2+epG&,#V4z>.UEEeiD`<2y"]xv3PH/A`" H9 w'@/^Fr3l@J['xb <#26>RB҇em>я BC H1|c¡P*8Åse60 ַ6x>/_b{?9 P0hU:arm ocg'=i~ Cj!|:t(Ma{ٚ+͐ 4"WD18/y2'SwdA,z?;|&L0_JWfuk"D0Ty1= (JLA&1h HB) "+;P8`8]F |9X/ª*C1f>G+G; Lƙ_ؽM wqO{@":B; -ggvƂPs9ԍaa"SvhNjewIelŁ˺ /{Vn/JV31rW.ʢ'qJŴ~}ph[96~`40+_Li[{Ly.{DDC.r-"Mecy"ݾވnsiʓ;=n)(xJrkѽ"LV)nHȴ͟.or>Hx2]:f$e5є~PP>˻yDWkɧu7ҵ?P mݚ}N8~JXP陘~z,=Vw(1Fʇ.vuvI.~;/k{w@|ຶ6Ny+5 ~v?Ofo6_~/;-UB*Ws g{wk0A^:l{7:Xcx Sl3|Wѹ&ƄgdDOJ |(v[gOsOӴ{d Slybͫ cy裏BY?2hnV{YX<Zt?Oڧ$k}X{ς28"ς,a='Ud],vi)Dt #}~疫 @6;ܭx1a2@%Bhv9x`pߌ9H&889,g H2Y/EC\E~9<9Ͳu|pARom)lr1c_bA^DǐԼvie{W cOiRɇ9j:d"jGUn'n)Ƅ籶1@QICPbw ? ǘ }?bk5cb֞l}DP͐5;&L k7|+`hPKi?-7"j{D6o4V2(sy@ 4 'ZdQB0A,\I½';RzSkۻ~뮻Z֯Uw=UЗ̛B:;7 /$!u^X2>A璶tHܿփ޼8;)_RYDZJPt̻:  ]:hK!WH٥6v]}Oxb)s2x׽#:8d  r? `.)(A}S¤jC(+)DUC?)ER:)(dgivذ9BZy9L*" W];Q6wy:4C'ߟê  OccXO2?/I3 ֖5(UT6YkE`2Y æk^>m\rlܸq“9 .=C5vH^0w_H)mCda *2c=#l>e>U /΁9mڗFiOj?/*\xށ;˨PM4wTb*Q^Ms,AHiXGzU. }dzcUϩ?}2cT>^@)}F_ѵ6zI}{6l(SZ29{M} MsK?Hw.99]{ uTPo['u{ ٺ}~#zv: E)([B?Xw ;ڰ RxuQ^*U]U0ZLFYcXu`MA+i=0ѐ.?!D} /mw:͚Ͳ\z=tֿ*s}tЄ"/呐k~r:\?>54wYhXi!+sQqkNް^ &7H!>eMAy^QaƮ߽zVi'9i¢1zl c&轤qn߿ӾjyR36W@a& n5-\pG7&K3<g%gI,p^#ϖr|R1'.(&ʲ+;\3$v)he^>8s[A=*galF eu7øW%ârC |]Υ>VY6:F'r)2 F:f.ocm7 h$pG)xqYc] #lػ0u4:Ϗ' _e6SwP#M$/S'o \r/tecZUe$EzɧЁZVMk269=cICi+`!nsZ\I82c1la$}Y|+`_p]|p|$i!{1p#s$s( %} p䲲6zU᷽KZ̒O >ڽ#(&8ˌ.AYsz3GH7;f+H.u.mHbq,< 3;vb7 Q\0+9Tfޔ2|&1K `,=A[1#";.>;K_@Y zĚsFm.\TF_e$d[/Zv;:jK*[D/HYa9#tW,$ =>3w2ذJg6}uAyOƼ;pӤdX~03WPw|Gʱ\cp퐑O&V֧xuirC!)|Ҝ vzޭW=חYNXB9.] \TGL1>l*YǡG nSč4ɉ Ahkf4k 鉭>8yzO*8ng"b`$޽[|yzu'˟gi1P"ֵJ/;o }fpSP`;]7IpzWֽ1bay#}"9Lj;렁g2vV=33&"pkh. }sݲ8m X:#/ +3.i>!};bn9˙v" =^jN"/'ٙF>WS }&in2|3%ồ@/c@Lqrxn,SB_$3֗[O21~<. $q .{9Y+2/Iߍr80I@e$2ƒëS9:wA2:cӃ [P:yk>'cM4d]`ŏdy7ob|_G ?`xdɰ'kaPcC{w61Iz]ySZ(]l9(KL|!>Ԛ(ZQO6>6 % PIEam)mB @otR1f*1qLʙ~f8\/ÜF7 >gZW FkG4gKHt>oeS#5c ~ڔ8I}bf2O˓R? d'쬧T!Y? d'~?.OYa{SCS~?.OK01~\#ڟ 5_Xጓ'd'O W&ac$?eLIr~'%KG&ac$?e/LIr~ʐ=!Y? d'9G49M=l`$MS368(Y+ccntόbvJY='c#cCOg9=O/AIrN=sL#1^M;$}![l^{~?$AkI*x'3h;ɣ7@Zlt^, 3|lm 8Lˀ'o]I4k+0R>g rhrN˟XNs`!>~'+*x9Y? d'쭯+g,8k{#?}{UI<'@G_ļg˛g|A3$D ;]/E>1&`]~8"NiS&{ӝc3ѻ8H$Ɏ\N<9K_VU$CI˨n,ib2<>%n! 8vcn/>'lxk۾OZp$|U%y ǵSIǓe<'h0اjbDi|CĹ prtL1rI$5v`~>>>R|zXn5_XX43+\Up $wKZ}zA wyUTdѬ]uWOEgGsߍq'L {f=ʲxg!"Hf{D#h.j_5EByniqe,Di`f2 Eƶ]C϶o`Qo5Xx6:MR? d'쬯ΈIR-=b3Gy'r VLj,<4nY}'bgsA_q{Kȫ ,;7j~'+WGY 9^YχJۺ=c7-0'y#R%?d7/Af v{=.Imdy~ dKD+_=sMweg pY.jxo<vO,tC}1BnW[-%>xLXY_*n7È82FU.'s\Wyd ޣ/~ $6Gg#7!EI;p̑8"6\!2=\$&fe9nFGg~=WZ-Qr qfi77y'쯡$(YĘK{6_)%ܤ GzN >Hq~4O#8dC|v2l[JMGAɒP>+ֽ&Kސ3$V0&K!7q ?|DŽx,ϛ1=vGSߕ^jVCb| qKGq{AeĢ\FY4=Vo]k~ZPNȅy -qVG?!1͗v>'5kw7~탵Y&ۅ/Eӡ7; ~ 37vdžn pqsmwWd>3'+0 -xˁ9Y ~?.OK0/~\*hb?O˓Q? 䟗'%I{SAf1/~\.c_$?efi 7G/;4X|s'+3H^ܿY 䟗'?.OY/n_,̯~\6e_#?efE/n_,ʧ7τ? C/5|վXXF G]G朹Ygx.V#N\sV/B!# I$E$$z Dj)$I H$]S$AA DV2[  m ͩqM|@gT% `!l!tsj8QwBM{6T!2y6h# >K/zH j^<ש +B|xye={əawdd'U0ۚ[\Vq ~Cz{zg Ln.8!q, XH%i|mi5$ _Yq(:;Z籼i;ۅ0y3#|X6o/Y#DL&'F82M⡭]q/wi7YEF$^۴mϨSef'Fdv؏]]tri4>18p*i>Q+l]쿥Z ^o[>!(%t̎WvvqL,Ù!kfML>\|/(ͻէξF+Le; 4r(캄ОnmZ@$E$$R@H"(,I$TH@I )"E@X4$BbE ĒH; %$,@' JA+JSm-IPYᯗğ*@|2mI^?=2q~/.Fj?xӜX9r3o3W *44@@(u@ $@A$JE I BI$I$0"$IE0HsI uϚIh+ ;ۨ#j"DDG '3GޝF8fE)ke:fus>^޹Nvlf9%6Ӷc}cb!0fO9n_J^7~P]F۶9Zcqdq5F@:YvR'Oh^Gݕ8lh}\mᦚ9's1$}z0D #71k`14ɉ}0!DNCϙ;mBUryFPȰHb M<?ܳ8\c;y`: xRND]ngO=nhGMy1H9۩psf,4Kl2ૼh8y]x8)D'|wkdMyCMb).$JAIAE$!$H$H"H H H:$T^-g\ؗ.ںr] nxټE~e򞩚s˵HDW,NlfpͱNa>\n'B^EL\r5hsi>c&ktejw;{|:.lnXk walH :&k:^UTlM&; $@Pg:7uxJRC l8okyed,Dh$8|y2=/gg&9 afi\L\P/s)àqybpXH3ؘ4k.x4hme􅵾-ٛNvVK-<blCIblX!'f77䱞NK#E=ymi`4=.;J32v-8eb6 ߍەA9q#A¹&h+]"0'8X;l[tsZ{ / FKowҳ`㙯x!' A,xRnbo"Yal)i|D KyPfx.=ǀe{ >]>![򽨬cfbp {M?v(ʺlBq#cl6;IO6W vM\50 8۽{^}eg*4K]]՟ GVa,.-w\dzbYG6*ZgLd`8:Nn<^$ɲw]| z0n<=naaO~4"BrJ^BB%$[! #IRA`IJJ6N!XI$P$E!X)Di`FKci$ cRN)"4  ("RE* )䁀"It8oWDˣ|~z%a_rG[X9rO/]GOe#N\|<&Xr|"Hc؂!0KIP H H;I$$H HXNAE$`E b y;L)tI ::i.M?zuq8 toW_̳9_MM̠t,y P W>,7ǣ$qxh׆%x{:F95@ÂFߥS60$k LuVt|9!=cOǕkZǁ(,B؋-.ɸmWߊf+3CD(솑ҤI=)RI v2i'D$ @"1R9$ (RyRԂu![$;4 v4#HIX $X O !8kWD|4d1J Z4}k{M\zvx9rsAT~9+n8ӗ/49b5_c9KEZOBC%H4xJGhHtJ5$R;H)RpFJ-I+9)$U$i$`IH6]D- @$Vu2eb%nZRC`* OE8W 7>l&É$ oq:cp׊ۗۨq v !{< !ylC޼V*nctl`q,3 M9MX6>C3Iw{g4I${1Y0#Տt@/a^wFuz/*KYij~xYi ՜v9kfQdNdTq13 u[n8Tqb1XN&K}4vU >iR¸\&2<1 JKg% ,Tp+hm9dó&α-n(uI&4:r1S,h:Qζm9=ە9Nj6HzFʶ/+#BÊwGCr9sCon~+#|nWh+Uh ӴOuoɒөtia4{Oh%t͘1MF{l;;^/fuY0=IyѪ+g^]SwDx4vj9W=vޢ Z:]dɱ~*Y>a p=U<%-isk`zt568gN e)4 \WICJLLc!{x򼜚w7܋S>)`.t {6Qܮ^+ $!siݧх峸R`[,ͮA.ڏ;]Z 4QHGMs@HB~8;mJلm|Tqm 4ĽbBgHL{|T=4y!IvDR4HY!JZKJȩ41jqR PD$@nI R)"!Iu$BC$I!Zp楕gGG۸1?O۸G\Q_k} 88GG朹y?Tp9ӗ33,]ۏBpMEiuC {'"`A>(6C$$*D)$UI; R`JiNᴍ#BAb Hav"FEu! hI3~|&a0^zR#/108LJ`{inьY֐K6 XHcqw0'c; hևOBoj/t΢8=2FXuUި@w۰:7O]wU |hFݶ*#iz膸#{IAf6׽_ʦ)XCA'gxcMѾ'8õKx=_-|(EJ|c$>l"ȣsvFƅ4n-Ŧ=듅/]'H5ai%?*Hf MBCww\<GxHiwSؽ !z/{mؚRg?:FNp3YASkɗc`^*+t/v6YpJscWhQ!9orfMzv]^mqYGfM(;W}%m"0e3ǂkˡ36ے!FXQ  #,(J)Bajv*"#ttT0H + !*I-=aD471 Fڑ:F$2RM}B{S@4^->5dmǠ9ˆuoسX<dSE0z71pɢû1 }bκ2Mn^lh>ª]mv(qn"cbsLO6Kɶm/,$.!AZmuu\D3F8S/Gk4Q-{]Dޤ5x]㌟ MbywFi&sUI08I3,r9u&"MD4GIؠ؝Id>gRR:˃#\4E^ .A#ke8">n.GldA'dOَ $z+3 `^F6b+ְ+X nԸ5}߇g.`Ƞsulu:.VwK "9>)75s}AhqW#_O-&kRn89p$…i,A<+%HtUqns2X\ZM9Vf&l99 *\M 1=uUHtc *]쾟M%,j9~Y;9S1@I* ##܍7;H 4Gx|FR'bHsI$RII$ ctDZvM-Sm"BZ9jAXY #JRԃPD6;$4ӂ:,W*j {;4c8~hnf?ƿ+8ʇN}%m e2oE ;涅sHnE;${)wڐҤm]%lm2,ڕt Mku(T-0A;Q:ѱ7e*c>T'䝅REyݭ<5mm\Q!*7M @Urz{{kAވo@#$Xi(Y1 Qlſl:qrS<5TÂ8:c(t#c48 U:I 4 VDvY%jD6.6α `߈Q1Ԋh$Z :Rܘ鮥;LҨiRTҖFpjNҕt !Ҏ(jZP2*JZR SE-; !-M,V4+CBUZА`F,i{;Vm|F? Ife5ogӜò~h~d+JH9T1_wҺvNbv C ] odavjBM9V@8)4脊JCI覤@(!A)a"ddS|7I-S;AhJ(#OѺ%N sH)Bҕp(oe7E*>F"(uZ =;# qdpd%)=[~|2j-ۨVXxƾ|t\"0WW꽹כͲ^ r;<پ5NYc{*Polڏ e-{c. 0:jVҗ Id ը8V݆뢈ùQ)q 7M_Bd/")x,iaS<{Nb|T{ڽZ}T;Us* `㲰 _$!ZsP*iZHZFDsKOt͕XK-)BjJE ԴtE&i -*JJzRФ@@NФi+j:TjV2-SR5JZ!7&ߪD5 ocOn}H}͟b6)?*b&wWCEqSO报 Iz冷?՗D5CKĹ 8e?N;H\w(`T: #qZT DM0*&ɵ\ӻ!J'\IFu!e  cb@)t =PpvC^T;gQ! %.jZ hb~B`=#oRndE!-*pBF1+ +׹<A*CD7`aC,PGG>JF;bpstC#e8o$ VCnJ`y6_D+YϪ䞏摆l_ViLq89>cϽRp#4VkO,l\  <]UuCϯ@˽qj ya{f1#u5JY tYz@G|f| zVH/XlMޥp6ҖGIb׃>Q,sH<)L1.46U洁R/NJX,Rm87lCtbp1ms)WOZ2nð}7D@GiV`7$&˃|RCCDYQ͹) .wHtP{( Uw1Zb -KJJZS[,9ήIXtHB$6! V6NҜ(,b*Avχ%GI-tHN N)P8tq7󱧉ߺ ̸gcCF\ؗM>ž781bhG_sf|wWc12f:bv;2\X:%,v*pG ;`:#zD3ÐVL}*l6 Ӹ=JNIr5n]# `;K57/źڴ}֚,VVrͩ3FU> Dq)vv ;u{H杢Xn6NH\KGQ (8W$?i - c@)h|saj5CzI{J+/'Nȣ8 j)!]~I`aD䖟%6D!Vi̊4r\3m _d :;aૹJEm+Y;6lR[9bs{` B x-wۚ+&"o$ af=#p5h zuޣ+Y|j7-|ǵ y/5͊{W$](Ţt.'c-s|<؆4gocjƖ0ΞR,oU ^׶ECb1#Z"7r<ӻVWENJ*0G lXm.XKs>5W_~GtsM=J 2&Hrxk1%dmS;+ߑZnhY"h0<ևc3[xQa-kdMx/˞7#~ Ѵ/C"%:xw;VH1$N?Z.3v  !4.'^~ ]t䏹 mZpK6(TtoԔn-u"mF)4)@qc9rCiYP[ muفct Sڜ@rPS"6<9&{"湄lUd:(]s 9xcIhr@UQ:K"gDP=kkbtׂХ$7ڡu-I5?O.hTChWFѤd#N!vR/tڲVo$PI=6@7mw pFrҫ2"vݨ701XwsNrFfBV:7Gif2^KJ>9"'׻SF5MMG{)uև96' \>%PwiyKv2g$T<4u W#z(u\;] %26U],&]"|&Y3|Tcu>b͢ ΁PôǟL`:74Z~*6298 $:;@;׋!i~QȟOKXeEtXE|6߅y{S~p^qCՅd3whnrXlx,^U& 5 4ަ#iyCSz NC<Dܕ,4c94'ޝۿ#aY挛3+9F=e泻Ŷ[g nH6`]bbFbt6Crvɗ.ڿ9 'NKAp'WlSa\YSv L=G asOz5x|/kan >5⪼8+Tjs]z\$/2̜XCWUcY1;e $XyYCRc:-bBA@{lņ|h}SA#cBo5+V murP)RCԂ* ˜{pzlmu+t4}'ʢS& .@ څҮǸzW;Vɪ0bvO2kpgs<85ϔ֖"wlP۱ljPŵEVo|_`ɀu,u !܂+qⶆxn%SM8b2t źj\4oqy4F47Վ!`ua% [A4΋ +Fh6J\ ֫.pA 4I6Mz\,uTdY]5Â֩1U!ES^Ћ!<2~F2I ܝru]9~25\N2HˢcgӲSY6DqNI_~c;M+Ex$ȳ+j|*,3FH k5:H˃(kz9(t.oɋ5O24ͅfhD$\[RP {)nV+%9T=,D8w:-fQi~*Wj23uOs`\Sy\\eXv26 $LiKx_06U3 S1sd F:'ZH Ӏ|q1_$Nfv6a=vti_9dXlA P<O,It1º0b'd0\K| áǗ*{dmBQ^7:Yy $t\R\;Gj(pnw#86)U)8REJ!0kdQSw$( e0fȆ%(4-g+7fU%tIЎ4{6Reju^>֣[h3h aEgށtq8VV84C .{q' ) i_rqcdolowyh7p'0ei$2CZI,dHÛd0c$|u0VC֬9K8:Џ[Qk. 9>6ڎG\.6287,Y~ƸVl:,_y*2,J{=OjޙdW,[>K9e7 xi8$1dBAN7<,.fC^Ái$8I~/׮kz!b9 x S+lin~z&"F.w^'^qKn b(M0m$ωl@;ٺkQ_˝3:-9 5ys w5 ;)mh!}Ҝv\;+0b L v֠ x{7`7:^)-LhJ{?dx2ro8)K&b wV<7o:$4]m8W/%!3@{tzS9㏞GG24dCK mK-Y267BvHf.I4v52wf=޲ŻP ]BvfJ)6<3:;{VCe,f^ {n)UiA˭1[IO:I쮈$>G؏xCS"]6ņ8٣⦈ፒNI*HuWg+$nHMgȂz^(]LG=pA9L~H9'$-o {d-4&1ǗQkG>j"(ncEXl9hFE>5vaXi.|c[4qO8]f]A4nW,ck.(od 8OX"Yߚ9D}}䠻nW2˥f.bzHj)qsސZqq!Ͱ?,5dV< 8)v*Fa<= +`ͫ0,GʺNM` /tzo5ӂp惊gf{mDZHkNIdb4H#.6t1vaȬ+e6/~ISwaVTw;*h;kT$dBNW=}$MqXֹ,[{3#q'6e@$2;}Tɤ)mك'=nDPǑQh]WF~j7aUFbhvhjኊ=WTT NZ٥tVdZt4i[ tGӺn*• /U(h)[H!k-ZtJ J^H~6F@̷|3M%_??t#~*VkNxe2onwNLW$in[RƝe Ok4x X2" q&äZ<}@Tx0 /qis cZ(H-] j뒠ΝV];Z.6 >Iʺ$XO%dOvݳ 9Ԕʐ'уD"?$|7R%n$#xVUuitl}e::`@Sa9k\l곍>t h(ٻ+up\f-дC:"tCl6T!‡R>Dr6{p 2Ӟ>HJ7|fV'YM2$G˜>@"3lPo64pՉ{OzjhC"Y_?R_U#qF6Re{xZ;>4֋ G2+Ћ^vϚy w? 9h&}Ērl GCȷn%\w$AG#mΗ9-;ƻߡ2qbIvI;e#G8Xq  =ϠwCE7}t97&O;'Sem'ß֏s6N#NBW]WgӶ~ }A[{_U,o7FPrz%t|V}%.bot0B\_̦u?&.O|m{dP5tniq}L$$~cesէq"e~43cd>tDLf[l> әBͳcf۟;T7cr4FvF6M}w..--./ $- nОis %}3 h9'}Na&32^s]; IdTH:pĺ̸66qAvW^~u?>O'hAڰx?og1Xh0_pы,ݶEE+[QاXxݏy%Yǀ6>^zLգkI33 q4<O{2Mn4,f(8 1PMomaqO2!4VVl?r<.g slt1SGsONP{ƺ\2$~D9s]+kv#0:g> #S CdK-be n;9{CCv;n\<10ızڒ->k3_#+0-3jph|1,mx30oK.x[aźu¸HL5 u; ^羼uw;b/p$<;hEN\%IOɴ'4yˎu/u'X<@{X7hkh9u>'sn+k1kCw$^U8v|5ACMlf)l4&1 >E;@MC5/plniqb8yb0u *N62 ;5n=]S,qlDnǮ;^i]d6ϏU<39|\:z{WO*~LVH2'#Nϴϗ;fNCzTy\e{ 1#u3rC-]Ue`ቻi#"pŶ\[$[@.2䡂dXY!)9J<5{K\!-ch8pwo\ك7'w/Ir{/m^ȱempmr"]dEʐ>fYmYxP9"g"?H^2i0lpdP8bK<~7q9nó&>n#.:}c/r%º2oZøaGGĢw"Ĕ ?BcO_kG{[*NoAZ:d1Y;#˳c'ң9nV*O^{-Ð0jG Gx]bg'n<;L|BhG~4fAZ}-c⫖}GlfX|u/t6#^i\!}nߕ pq> ٓøg;qk $6qXa{Z*<61݈_]69.?GSGZ6W"m1o&)z>t $p,dvVHG=קLX΍=^)ϙOWSdbyEs3GV?wS|?I'Cp),5q>FKs9ٖ9܏Ncuk9C00<Z6]zMY?Vb<hsIa-dX YѸVk09skCȻ ]$ݐy»Q5@[7b5^:"nq%OdɎ}S6_ 6؛oCEgGD-$ |n?nau]Tة63oL3nLيdS8qܿn)Q9 []&>@6(ǦQګ-2l 8&DM41-wM;NvN˥<>r'[ueTp5; I*Yv :{Y|0{;lGVcklr8y5-DP)ISKIҤ,G-ی"rlsAZ!kهMUH`+vdٕ$qՆ<] Jt=6ؖ];=_=pmW{9ak޺l̸͎Ѡv!9Ngeb- ´ h̓DBKR8Q8;c( ڃ+x]r]iDVZl= 4-wetҋ K9&(%E&n ڀDض8y߳`(lc 9Ăn?yiB0v|aEypA}Ὅ8V*qkl7Nq%ZyWVc!f]d~)K]rSwr:[Aݨi"AE&o0 k wE UܑQ-[}֪44j?z zskuP)+pOЋs[ԡEa#e{k<`ɠDloίS|n [:-(thmv#KFiP k^NNkj#@;㷽ZS&gtXzݣ{ң]8xnE=4dze$Q[&,(uOivwkya%K8Dٰ!kÂ8Z]5zZY^. ?-31l6 |zyYQcOOgLi:䔟hkٗJZ[چ_PwXnka*AɃ.g{h>Vhh1KFx<S0I ՂMrۛ{\c${\3 "3\@dl= cߚ_<Sù;|S #у9[5OO5;MR y;suK9Rl3ۘƹ;{|$u[Q>Sno`$F2dܩY{IlfǎFxQg`FksɎA7L*Zߕ3+s㙒a N[Q mca;ö8`b upuoq65X$4&Ka=ȨG^,SE4ѴJ0ٮ |*Gmj=Bf8'CippiqpGӢSsmTK&)*I$$I&I)ؒI%v* $ ($ $H$IBʿf1lJe_3>ŲUty\{տڱ|ٕsvErw{,e׸phMZop+]OZטNk{Ǚ j72U{Qɟ(ot) .[ևz=ɪQNCKpI[=hRD UT;  u okImV|{_E5d)H >NˆK>7iuy)iD_ 5H #kܦ%AoSDY֋붱6Gҗb\[OqZՙtCWjpcXIuni5--q{}8FZwJf7c#"5} ѳG0Ӌ@/Y, s{|kٵ*e-7n Zlo~>hs{0p$?$X{[Z;oj֒ u"H/LѶu@pOC5 vu_Qޠ(+t7&}NW Z@}Ʌ8h#!ayePG0wYm/d\A%H ":Ik'NsE`D&\~u9M4K9G#^vwCC%]ȑJJ]@=Llo.$i n yRsbU @yHpdn#lAy<[$hkd[7B59= ոӸlcvYw=JF:nbGǰ2:hY ַUuky,.*5DgE4ozJn^ާne[p_͚#Q=黃~؟. ˛U^M }U:cj Z:[B﹞6?'QkowXzDgO/R}|]eg6lևFޣB(Yqz) bei o`s;)Dfg'0^c@#`2rywрj{c.,>ZVeׇ$e{f/fSiڰ DZVy~,ɳ<);1591 cs1{uX P1dp"ĻUt$ ?tf"'/K7гs]1z>1m ߥ<_=76]BVڷuߥxD&D%nF{W`CaV/zqa :RIuUIJ7ėd,n@fqenׁ9 3E<ц:'[#@ma[ˢ G1K3HgdZ/;UPk^݀ᬻ[ tac 5̧ɀ|XhKas'@ېLQdɣ :1epFއaa\.MtcCcJ+0I$I$P $EI- 1"RA`I$JƄI$BI$ltcrCb,nU3p,[%r`7wqs8aC]3I6Opiw s͒n#~$Ԍm67ئy &pAhUQ+C\~קQ[Γ$i@Ln6y~ֆw+Hb{+Z氐 Lm wHO *:Cds^v [@Xxw<PMX`jnɼ{ĩMcb<5@n\ڱEIsG*75<-!?Q`.wډ\@ޫdr {;2aizBY((Z$;;9{4tq^W"S$U{ӌrvzj\6EQ^(7r66Ow}E 64˦ȽfH4wgr@)Gf NS'=A 7S\N ,lb9A-ߙ<wg=Q:J} C؝FC't{{CM.a-nsOF҄Fk\KAS4.#ސ=5P6f 5w4 b.{6& وs@QQŪZWN08j4 k⦏#{I):wr+ #k72WvڴCN⮾n iۘh&0-TG$FMR}M̑ƈ}b@v=$@]C|6'#7Q&)e~rFIepϱHƈb=='776{剏8K[7܍ꯩ^ƀ-5x^]C,ʧqҶ)0lfA{:M]iذ8Q6ѥkKdDO4 Q'CfZ+ZEBkHs~4LqS]{ل}A'^ǡXq?+l;jזWdiIه)A;߂ l.p!bB! 24ݑiF4Mc a1̖Ƣus~dcuK̤mJ">w j5u" s-XgZ 'E4 kMl51u"枧H5iMSkz, ,yNÇ8vѸ !Vi#^D^22-oKZhyܛD t1z[N!s659j)xkA`թD.ח$6RC9k]7@ 8ݒ v>*-Uk%̺+ ! {\E V9UXP%sns\ny! p!wi%Eo]Cs$Y459C5?pt|5~>1ӷ=3,,0[IcXkŸ8wA䞗N.' +c ]ˬүԡz: ZbP{ 98mz/ג6+u3J\ 9vf|eKJA$ɾTz^?8Ih[j3*Ka-$7~;zgpǃ7A."4 ج"4X TX#i4OOgPvQp:aX98줧]]X"SH]&ct@9&7AdI죉;$R%vEhP7ַJ~!{oIb},;sT<@)2fQQ@XPҜP($OeĊNۅqKH`Q¶"Yi7OQTTzI7tlP0]/E $?|R<lF>1V\W#P uJ vO2(*lo7NVsg hj=)*Hݷ5% =J F -&I$I$TcrCb,nU3p,[s tlXv&$h|:ÿ8jJ =[Y>O&KCɐv'1ă-(]:o ͔NsVd>h ƞ~4MfSѫR/s1ӹ W]Dl'tvY>\Ԏ{ ;o` lhX6+#C[^M07)57<:#[Oܹ'G :A\';mRuDK@s*xyH'SB6d ;j$_U gF~$ZE8Ti2, 9PFH\8CƐ[QNkbH*9B=ui-!knujM,s#!G+ 9샴'h+PKC\J|u~Is^fj>=>ti[ ZCNFj!Aݥ,6'$5h؟7!ᑸ\Q>M6HɮiKt8 ̍f*GcQl &;+1S.i$Tkأn 2*Sn lG+cd#Qq@&98MQjflu>a\c@c9l56ڜ+y(2İjpSg#X+rCпP Mݣ\ hTqi{\`$5AF0I6TGUᾚ9+tr`[&Oc| .a^ᤖeSӦcx)`.96a7GFG!É8`W;\\Wv. m)x& 2cd fcN Ͻ{c{M˓cӮw5d+ @vQich| wI>}_Dc 2|T=ac>&kl֎T.Ub6 $@OV$\k7 $Pz+C/h< [)x.w'_ 3헵#/< U{{riX8o SèvZ>;̜Hn3M7jo8Њ Krn^  qur䤏d곃ǟ~,|u5&Nd=F;Yx¬ir;2owOrwް>)XK &'4@fa^ sNhkFL^GU]-ܲ?eGQr 9d(h6Kjw f1!y63샗S-~r&f<_qcm\ƹG453hyrƝC }^JGV5N  sGrB?#Nt)'\[>00@z_/Yz j2l A=t<SGCDzA-DU}1/L9/ `d⡁#+_N^$0xa|WR 3 6\a P=RHMNG5œC0Sp^^&MN ;rHsVc0f#ui4JM;Eas=| ;])fG;^ |R!̻cauܕ/B,پ)(UPsܝ/'`sp8<#gwWz8k1Ev5_s!i(}>dhvm3dRvp]HXQ *kdG7T3k8qU]dx6ysu0 (9kxN,p`s0GVA_&Rx\Ң\KPHo~qd,uT6J0Lw?t͵V`i ŏHy`haCCUdy_L?K쇕$lG[CEVG쇕$yWL?E0kYc\_(x'LՏ!3O/W4L)ɞikCʿfz_d<&gClnQYU3!_3?*aLdϽYU3!_3?K&P(副 pG쇕$>yWL?RfϽYU3!_3?-fgާrm!e3OU3ѵrCbؕ˝q^}ÅA:dF@%,P\gav-0.9.1/themes/yisus/background_big.jpg000066400000000000000000001263261423175241600204200ustar00rootroot00000000000000JFIFHHCreated with The GIMPC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222"a  !1AQ"aq2BRs#3TUbr$%6CS&457Dct'FVWdEGf*!1QA"23a#qB ?{Qd%+rM$Eh1BPO1:O2BjlmM0뚢@7sWuěgfۻ9ۆ/ I؜Skv7tt31^Ͷu6RZjOQ'7fRLR<`<}欋oqOsc}B3)Ս<+͗8^BGlme1^gdOM i}L ZToELRf]lR{r9{:` sasWqwDڙ'i;x%eiEE^vfhcu6ʕVf,m!Ʈ!?]1dKQv,ٰOLuncU›p?w}yef/ZFr|Co֬B >́vF SNѭEك Aܽ 8Wލ_.i{j7qn^0hK K>X;HqLB f!E4;9KC{E{)LwfԦGt?_=n\7 \.ySntGH\ggp F{-鶜T>bHޔh51e"ZԩөZ(kQƉ.W]F[H)a֬6ΛW Qk~/"@o K2Hvȿjn0BT8R㝱6$ѣג{=:1t!{ @Oe4~wK6Lo]*gTè1mZ.{gԨ%-OOv{ucOh2ElC&ckD~r_waWZok{+bm[6gaQg-smo0.^+Z^J[oH*k\jx/RV̰8Iɖv;[nylZNÒq;ᘝœꊦ3;}ߌGfqW{m.buYj[Mwr_:r[ZI eȱrv fmJ엸s- v\b(6n'fRbɭWm>5]JSiJr~iɚURJk60[%6i%F[SC=k}>xX8~W$s˦2+psVz;Eɉ(3wfycok1jCܻfL w5pAk2-Zp{^j}1'mwmaK čtG4&ҷEy9.')#9r^iuKZ'6Tw}Z:ΥT7W[5H9']~N5AG41^⌰h]Nh/D5cë~-oiU;YN'+۴75 ?:=Kg2oII.o>=ð|[ ڂnz) @sn]~jĸݩ8ݍգN* \ L\_5Hs˝sheĸ\VbxjK ƈi#9Grmk'[EkUiquQ<ș(ڋniPk]QDavies= bиddNuqor=Kw~=H>{{gkghk 5ڇ1&4,.Y nOim}8P',_3 v?ث7m]'U2cu^mᱦwqqd~X1m, $RZ=(;)`iwWlE׹M]ݝGtFj37./ݾ-[դD4n.3Ojl3C v7׌qp DI'{{XaCۋ4hgR8{d{_ssWJL<{n}Z6.o[Vkd Atb){ Z>❽>[oh셸՘ݺ4qƸCS+ORF&r1T}) gVwHX_'tjHiNt{ 41^F-C mvFc#~XD``E]Bt&,̣!3 E3c̉QkQc% %)J,D D NRBR(BrI4U$@@9@)!J1PSeʙʤ!TЅDj ˩4o.8KZh3үr{Pht໧ѹtnĭR&6Nuft¾ssA2Vrߝ0Gߝ0\MNܽ΀lu\+?Qu\+?W>7S/euL+R:+@سuL+?QuL+?V ۗfΘWΘWسm\+Qm\+V ۗfΘWΘWjvY:)y} J/bߝ0Gߝ0Z,} y} B{- =hmZxʌ9; [&b)hcGм=OS{սY\g(Vwǵx cŵX+Ož(:Oֶ ^{X`k |:1 Пhፍߝ0G׼qL+Z.\lfΫ 1#}canik'ez}*-n-cF:GBd.RU*=4ogggmq _Raᦝ^].#JayB]\]ߝpGߝpZ챵ř:*MJ񏼼-dӥpeǵsHRXe/-eyaN<=c1^s`X3zKîuuJ9{VGQvv~v6^^m!IٱK 2Οf:?xo1gW p3_;cy1L/!!,nqJtoj6Mv\6 "#zTݶ,n6eJ,hhj<;Ng&;{yj'x~>ǷW w-3Om˥~{W &]b0W'Ioe1)\B8i|jiq,MccW]ՠUlZ?yIfv9?WqBX:N8fU΂Jvyv^׸!itQ6=\Z21"IS}C[tBQ'jm?:T$DAm\qL*]´)}+:m8LθW8+@.-vbjֱzkGKF>c;Ul>uVը (eR:*+]W}|gZTRsm\+?Vx {´7?+h,F'^+9^r/)go2=~R\̓P}ٞAUil$I cMiZEk7:]oU2h^`RZ8XgzAۭ$ͽğMgclzCN34⑐rvn-l {[ߕܼ }c=hگ%~9=yT%扅Dɱ6G<]^Q`o|t5[L华O.ΕʱF^wxQA¹+c ^׍i[ kt?A?>΅x /[tLs#g,}W?Ue:fVoSN>+Bdz?Ke, )zyOF=@m ګ(v> tcC~áUE;ltg^FM»}1 ^.ҍ#25ccpOh]pS ˧lsG- wulz O3^cl{fw?+|}a&ֵ+h`+Q6=6f/i؍Fhj=X`VhSlz},7* 5;"tP/3ix=ZNH~3:a_=3:_=´P];rK7g_~t¾{/3:a_=´P)ۗh} y BvY:(:+El y BvY>) BKس{}L+Q}L+VBi/b0G0Z@4fΘWΘW$&i/bߙ0G0ZT)20Z怺1 JłCZ` (hf=i j>՘ޠj4BY_;ryiNܻ*GPzW|G!2!!T!&L(I!@BB@MpI@(BB&AB !9p(Ԙ⃡{cضeѤDӢVYf!FޭˈjNxVZ*{Ht4^ۊF&=fS=aZ*MtZL@R~ oƓØA[k[VX1Og[SHH< l3_ʙ"8iڔ6[iLI*Nhٸ}jT4*=VSef Oqu~f*=eM={pLo>湎5ָckW: *-I;1#׽zpҝ 5aGcm=N߰$$._AvEZ;B[wugYܯQ`#zσBK8poXR{)WxW8]*lIpj~):dk 5c$*C={#8˔I~ֈ 8FYK @D$5BL Bp BBB ! BB ( >B!2 BM',I(KMBX&h,([,@L)BBP R0)PA 2BAeǿw(}Sd /g-=C^x3VkBA FlVMNgV&i\5?wu?է;W,6"7Pxx3=J( ɠ!!!GPBB M!BIB!PB4MNJK0FKQ*5|0]QWk0A[_)bThڍfZ<{[ Kȡ]\.VGN=v9ĴөO(g{xx-Mջh9:$ĸ>BsQ%.q[jU_S'GZ]ܼҔɚ9Ps&aUHo79x'qltԸ @+U^ٔjp *bz[&Lj,q rȪ_ɥp `We䕟iRfPmgի񩳪M6 2 $+%MjE&~Uᙍ] ~ffaX\5b l5vn-q\ۊXA:Cy]ob9.,.YM3h\Q 47S۩ ]cI[T"@wVŻ_MsCC`vͳucm)Jϕu- kj14;24!}# rmKUKrJoc73k1N\j aqF^m'wtȦ:L*vVtC9'c ˂w=#1Of,R>WYI%Oɯ%3uǏUKy8뛨KF*$B{٫'aNcl34Xننˇ֣iԧ-> .g~gN{rȥ226uUuqI s}OUR3L~ZS>&=Z-ՕKqK[PsT!4nS.m?Zuѭ:KesP@dv+ 9uBf,(B$Рj(!PM$Р!0$BhPX8BX!D',A4D!,A4BpĚ!,Adaa4 I)BBBpT@ BhP@FAeח(}[c f{Bc˿>3OB(\'ܻGv$.#ܻwwigW"Ѵ8hR! БȡIGPBpdx" BP% D% BPqBhbGBiBĄД,EzhTXhAbЂĄ B II8D)BĄLԥĩ!_gzm #!lmpu-ZV`8ƫqFn˖6Fpד(Bљ33Mj-eeTJjv֍7EXkP4I7,aKw]3 󲜥+acha:9!b:sE NJpsvKOU.:&H+mxoBV[Uxv=༁ߢmֿ{삣Odit O f_+  'rdK벍{zt^%!x,`ufr7Vh]ZEFޝI-j9{4XuF4\iQvCڷU<.ph8UUc.)nSC\8{j*Re~x.R+ѝX6 ke{De]%Df;惧Dެ׺[D$eV66S޲͝ZnkQyy#"nSaaZei\YЩO+^LH+Emn(ж-vAgS^4eq=ѽI%A;qgGt`WsEY*uS#P΃Jc%U##,{A'Qy#ZCqԭJyW)4.i\sA^jÅ:ǷQ 炋/#,x Βڳ26ykW)BXM!t8n<}g1)RtV\5tR@ֵ0cگplqkAsvߵzƿq\sXXɭMJIFF8 AƋœ&\/FmJ4+tTǀ?U45'CIpXPqM-.'0'ThF\ޭ7X_UԮr*S:&a9NkHTmF,]ޥJT2*կ͍6M0ʵGLO)} Q/ƻ}PΫֺ;s㯩d[-  W|}3+EVvRu^eP$$׾mHX= ;6g%ճR|B7>9Hԗ KzOiM nxO)Rtjk [-'DM&YZjUFH-%[YtS tڍ"f5"j4~0̝h4QrO R7-V*c OH`x@ 0Ρ&h$rXeqtŕsUIJFςF> 7yk۔[ UamGWzS]w.Uiu 8DGjyXaZ ?E^nJN>0A%c#RV\Kd4!V@!8tqR.HO* % eB"YD)Bp+!PY\"R-BY B*YPY\&BPIB &BA5"5M$ !(Rp)BPPB%[B!B  $x&EV_(h[l=]|58QзzC^X3a1Zi4r^'\]];"eTpqa Ƌr+B"DQ ]B`BK#,HNdPGD)$,!D% ! B(Ab@MBؐbB!4$-B!f  =F+ ;6ƥIrO7a,`i04AW꣎:!m\NZ*UjceY=WbU.Jm2ץ􂶕6Ty-kؾ,W6;"JsªsSsл(l*ʆc]j_O sr'R/Ov+ +Rj+g=J}2ٯMĸnJځ?,hj?}@ӻ+Hwѽre2+znSǴn[J2mG]j\i3|cLFHP[%]٨>+1uQFg㡘}3<>L$+iթGNsOaW:ΣDǪK2I}8ϫCZ:$^Fٕ̦rұ";;*re3=E l:2a-h+:Z  4$6ͽL!i='jcyx=W8@GUyT.AQEO!܌rǃ28JPZTPƈպoS(KGX'w) Q:5R]PQj,~ G*2BB!4BH@FKU@U,ܩeBJQ\% ܪ9PYԲD!Ii&!0EhAB!2D!0r$KyQ p(B$ZCqY|=muڵF{BcyFok ]TB%Nڟ{ig"ۖ%v`Y2N80ɔpSAz9QU824U24WN;D@KW045*>':u Yv+4Td*Qڵ1y*(QS҉+Q،k(*dBSB GbpޞGpB++Ecl6EVbF'ֳ%>3 )=z4 x$6Bb2' %A@ޛ&Z&$% EB!Y-!NR yS @W VeD%QNʠ+ʌ̨ʅ+ D+r\"SʀfT+ʌܨʀ*22yQYPeH],RȮȌb2"ȌX1 ʌ,T 1Ae9Q_T4lY s7jm%3ڷX.PW?Η B1 "|JJ'`lLJYR& +?>Ү_Un^^a$H2 V-ȌÊR(fYO,bDv+ Qv+n)D!gbFRw 7% KO I )FFd@ަuޖ^JjU"H <ҋ5L ;A*Q7D!H76(#D"A JyRʥ "R F8JDh=8N"%ZG.% P7'(lC*TPpJ%ʜF(LkBDBY(0!Q eVe( 'UlB4@S)D#D)T뤡," R M$*ő2t+*ڻXF1ܩ Oj2i,#5FԜYmv^Njê\`O,+pkKY-{jD~aWʜ%\#Kg$FV2ZvxHܦh5oa/v ʪHe$YE^Y*JVP6qbeYY`ek)RsxBn47DJٶ ܤm\Bpl 'G&}k;QǚeP*c@hljKwJ:' 6mpH1Ҧ){T^UHk:(FEi4b#"TdK9!e)`*22,FUfTeTeO**2!,ܩe@WҺe9~'+ڑhO,zoԕG)-$n-tR-0x&S )V *(r,Q\"$K_lPD&tHXPeF ʥTB$%RLGrg*!]zXLh'UfNUDHNe>hHdӂ/$j78j"4Kܙj4BՍJrS|v+2O);Xԫ/bY;e5.*&{4N䒹G1[b/j_N=I$,ݔm71# Ó6'Y&NM#tĬFRV',0[!bQ23JH/_MpQ$j jHY]Ť` n^7D,-@wB&>sF7(Kz%5AOUİ): YVX텞9JƏ>HS9R 'J2"1w&)y8ɶAUBPIޥHOS Vpc;ifzjg${)eaH g&jj˱0Z5ڠZ+8Yqeo"i}2#H'WI'(ZR.h =$R rYIa[ ,U-&BAjU!^TeVeFTyQY KYSʦB0TeFbPITX K''Q,!8KTԡa BPB 4D+BB!K*YRb)eL5(YT(4)(#rxzB2dLr*ByS_Mk/oo}1k>9c&h[\N+s^|k6Ft(]9I0m d]]&Y5ϴvpM2JDFwȞ9G4TY,eT@@^8cFQdCycxUHƩE%7R-"JZcRiNt4@JJb@]L0{j\rJ_Sd򏹎{+bVͼ3P,u i..9F5u'SѤ`x`79tLhY sE(;@AWIjE[-#>zz\h.je1A[U޻aM,l-5jƺdp^iY"NNlalfoTm*3p[N&npΒ5Ng;j[# )$k`*ԫ2*'r}iPs,d+5؜v); ]&h:@^&.:(Eu8EF\,dIieD%B \9y(a lfF)9n3(Qe g|J(B%e*~(P@sxAR6R(EAeeBP%T' Nl^` <٣6vT[RޙWmlp:5iU69YSp%&7Iy*z,OnZGż5%mI5RN\V%D8YUtZUI;ٖrHvYK"ْLfTJ;-Q,S#riݩSmVqKNC'%eSR@YvLriZxtmO3C s6ct-mƁ Ywrڔ@\)x:6wRuWpR娶eшbT 5#vx.-e(UѕjD2R (Rm2wF{/gozeصYK1guؖL5|3>r3t/([w5C|,_WUn?;/>ҹIYkY+`*2#ؖRBb$) H t)e[ml)>Z+SHP#n ڼ ZSiiBǪ73lV5J'.b4d.i3ml)huZC @f;c:0ۗXIhÄ(:nI+!O*^@,,rV]K #6e 6*BspP˨t,HĞ!0Xw"SB&P%8LHG(R!(@)QX%5!ṃϲgU;TTLoODB)5wAdyԜA廸EW嬬XZ&Z_8lUnT%&*ib Z<^ \ɥ 6xk7?VV1smB닪n\;%F:ˀDt-RwFB 5x.Gcauڼ vX4:ε%h by9Msծ~W7{x]imNjw.oniڈc^縺{5\eiFGY͖ 4éKo8YŬ*U$ GpݬkWqZ㛇#: 4E [l^o)Xhܲ`rPzpqē|w,Ec\~ =jUfk OeԲ-5mhalֵ<')E/~LQ_ ٙ1'N : lb;)nd}#ql1ʸ,I\ƶF"TjVs4ЈPC?IU a;]/6:gY՘1P#M b>cUO$2 G+!U< -6U*6~_L6 AXkΪYF5XxFC-$&gSiY_@:;ǚ&/ hRR c9L֝o{YG| ZaAksf;AL)3Sʧʯh'0ԧ$CDhVKHdZԸt0X >ޫX="Imb.*.--EL@v'UshN  ye'RBdbnHoL X@lUwrpfѨi4Ϣ=\2wХ O- {-Ӛ85/wR9>!iͪEo pP%g3 UgXҳS66ԪԪWJ~9[쏔ī>:fDǹڈY[p}oQuPN6pXmqYmJw4>)4]DզGQUsTUQl.*i *RXЭ*ƜD WȳVΫgtz3j'j,zfT]S1;W =um`rP^uzS3̞nSuv1 3~WR YNb5*kKweHSB4YhY>2PYո=BܷXMގZ)I#I6h㗄Q;2o+e,fִRcɐՎx58ou-zQl1VkK}NڞdJѷ|"lf/N[ecGSpZZ-zoQwM6)FRg-CF^5qƑuv,J^@UAQR_ ]ΦۀLଶë]?-6VC;֧MhUɳJ$݂9IDHIR+ʑ ,[M9u77x]FhoBYUl@FYJaآ aobR![@iVFE6-rSTrYNZ Or JjYDEd hNEƥ92{U^LWxq|ќ4o[#P#UwU@y'2ۏ%y$Ry9#i0x8J[@msst'ҵk3*׵Fn9,7tNshר5,zR=g`V֨[H! 7M#cnWR]Pq]*f7jܿ!.t_KZO]wv:gU-[,*0`8:-EPf9@2TT2DuF8Kt,76tku: ZK6&vh{- :V!cj=Im#xRBո* h׀RSZ^$*I L ҡl{AI V nvFhj·ؠ< ;v#DbѮ,<2v,hs[R3FbY[BA(Șbț 1ddFE6cS[0KcYPZ GFTD1AWd!XhU؅.08(c~`A )< zK9Se ̍G (Vl bzˣK^XRZzu(e0{5IVCӢZO9Iڳ3[vH1U*@NA#SoVcja =]W,v'tvM[ TiSmzLd4;j {L58nZ iH*U/(5 ]Y3 x-(-:RC[r_ ptn)11Ur'+Yu{nLH"IcҵSZ-wqZ,VS5ܱۤDuJaP=[ϫҿn4*ԡXt5w[cjM:3ev+ۏ#kmjm 3Palqߠ+8utg/oӭsοxYJ]iqalpSn)i0 &N,BK =%zom,J) W?g w;87D;Jx.=,DUd3  iI5gSw_'}'<6g=,=&fvi
Ǥ{@#-I   4˼B;* aiuY]PugUʹHicpS<9qԕˉ;Fv_MC4VSn[d 4ⱌԦUpOSc#ZŖg?ahs\4%SX:zTtCc ֕q|T4{˹6ӦSs3|$ڀ֑koRY7}ss4墩@= h;j"Bh&Z= QA a9+`xs8rF1ګs!dTBTy$~w#cw+] MZIE9; <RnQSўIDVEcHԥ)ܬ 4YL2Xr4X) lGQC85a֞r>wKA$&غëѣy)T n U:> QөҚg뾠iLR6^j¥MOUYsX z*1]ǗXW2:ӫؗG_wDaJHBG=JjkmTeR"6XޏY=鵲S64x=&OqZ䖌2u5Y*Ras̬ $;3 -&66) qܔW+3x %eUfXKOK]ٸ92@qfy\wSwR C?R{mF!yy\؁F"8tN윌V.\OrS!nkp''}u&?ݻK^ŒeBLПL Ԡ(\GV޾n.Uכ qYcjrS`U>Mtty5E58[5WALkq Lu\fUnXfWKѬoO`j 6P **%{Jh^L&`vuGFWCcU؛"GPJqKc/äj7/nٖ,hĽLJ Y^>y'sVx'#M՛U٥R\W<}CA.x6^:M#zH4$xxUƙ'v{_7x-z-3~H#\XZ?~k`wR8i`SMA< "Cwִ#&p޹!h?ͭ㓃<7! -> C Ͻlj!Nݎ7Bm0.=f[`6ӗeS\>s|svwn/3i#0 iV3y~[T)KA.'\lC*7c Sm u-cm6K|gr|.hIS6b=kKIbms?ӾŪh!//g6eu+%wu 0q;zx;7i aԮ{|2*uǎ]fc|1bGÀHsb,kU.GR#c{`׹ ι/RSG cn=h:6繍2{`4r{O|gēE8;9Qq~/9lG7z7%7 H x)cFl&ȟ.>ŗ$wvxH,hT{H*MN-.208rN'%1,a{ƧJW-1)yے!:PhгOz|#(V{YiHj;Ȑ#'{@iëgh^5Sy=HEiz<^u@;(O1ZqEb$o.f@­xyfôdu;(7Mqƍ_LgؽNmCgS:RѢ}& u!b]-wShݧJ:~SMQN/GXNn~ Bɶ;*X0)5s*wTSkf]~Y±SX?j` գԗt\>)T#8.$]sq= }'[Jf@Qv @-> oYµf/Hu.zM?Z5 cPݪ}&y0':@?"F_soz( ۂZ4럜-vĮszϽvS5gQ&y 9'ڕL?h+0ө^Uq^2zA#elT}LB f F F N%ҏLZP> }MLÄ W߿ڇ`ٌfޏ cԗ;QO.^חDqԼŞ5{;hPhҘ6t` %3CqT.кf`SV4w¬rx6PDxefYcW6SeI^ûtx]īՇÞN}͎] s_^O";ǘ놛4))%^OC[OT]M9cgy&vVw-Fd#AM6:cGh?b0:t"KfY s~jl1[l)mzn?R;[0縻Vps{!0^>čZ[B=by.t=XƾN*4n03Zc[V*+n2V ;A䥔Or* en_(&:E*ÂpK>Su[&ڷwq-iT @?1p&o.)lg#[ܵo=jv@#MzԹC>fR=ίv%Ji[඀OMvV ɮPd%5i5+WiD3Ǻތ&gPj8j֌xOîptzfs{3ꁋj+4L#7>Zz Ѳk#XI@mgH6s] uAB~*XHJ[8sʪar,w(ܼ4{s+5U^>,[kz\Kp/kuO+0]R$̇r+b|`|#e,[9i5ǃ?Z 2:ғY#Ziqe"oޛpNFU p G:h*eKRzkQĴ3MYOgmZK 1[~$uR7L>/xߠUȏlwdNjYfL΁ڗ>-B~ M8FKy`VGNP {c"n%eahF(}[#ojZS6ϩP=E 6ɶ-}i`=?J?QRR_ۖbm|$,/.S"Y5u8.)}f3GRI._o,ŽZu zy0伉!V}+)[2h8$c[`$5:yL;)ˌz.jm&T2ޞRtwT9)%o@!+<Ѳ[oO4Xxe6.׹ &B[zT| y% LYP.Ҝ`k.5h$7D:. l: Vـc*T`wUzf&S Aҭnڅ-li{ E,+QSM dQy9l77Q3ՍeÚ WŪfbtBc^Ʒ|A::p*qܺ)x W+>%m@xҹSjC :kڨ}JW(StrugsSn Rt\q,5k.Z땙'nƴѥwOy5 $Uӣt0G #L`oZ~ag<[Գw?J~H38-9#\6JIJӦx{L:9q^)=4peS$6T I>*93J)| dh=D[ӝZsS07z&R h9+L2{HKc<SMR*X+vgScHS5L6B7&tH!9I l :^hB̴^h:%P&nCH0I LpB%B!4!-X~Xǵw? V. B{U*Okʂo&2-ҩv,{<'ͅjh1>1=[A %@6%fsyի93NzR [V asxK~m; hkք{|'_MJCZ^|~׺@ZwH :?H6͖8H;6޳u%=wɄ}9I%i]o›FڶƹH"H vK{9KsIzMKI w@75)ehqp-JkQZ_ކ>і4?UvВ٦fϼS85VׯƑ]R`JX5#5Gba6V;/",(i9JX0al2֛ӒgbG(` hON2 y9s%ei%`\ג8U$%^#vw *`&0ӧ X?5%*kIK^@>S9%ď("Fc.,QKeݺу=X972)'>RcR㗰+owV4I[7:~QYiai;+@|%݄( 0R hh io˼r*b?>،k;R ՍSS["Sii}X"t@r:''EgGOꏩEiޣ,29<[C(v![o$^`w:"߅3 2?^fiHf=(F)DgsD I` c)el _%ICvSB^[ 8z @1Ҩ\XǺJmiZ#뫪 7sh/q-˃oN qU$Si~)K۶ʠ>GyZ,昻\Y-ںcyc7TZн‘1ю=S]ǰ-tkahƲޠPMX p[qҹ}y3^UeIZ ى1v'|pA,썍Wkku!Ӵ}AwBچQ6U`YUmjHmG>T >8!y _r:nʛBv.=}G)5,ۘ38z,Z{sRQNcwFWY}"թ.=> IJlk7!DԩzuRYNь2f:nlqs]Yd5Yg ?UȼneBkӵkoHR"J,c[UjdH"TxJVT#3Bm=R-Ӳ&=V{Uv%s_NAа?fGM`hr$5#tR~%gs0GC Ql{T-%[b4 q - *s{K nz/l T,>iႠNT"X8uCl)U#ud4 J9Rƺ{au56?}Jx d$xC@ lkȥ5Sp~7-yltSUqy QKk(ѦkyW3\FLDfVEѳcVˆjtn('|j=Tnz[An'qFڍ3AlX¼L.J`jH7̊={v>}"=;:k2:jo >ԩƓ\G;S\6E`Qc)GdQZ} ߝ:aGAwIZ祩UnbOGHŌn#YAL(t8FPO4QM0O%c*U z15 Zb ǛPtuz/] ڌk4%yM{赀w/DvL2!](ڡYrfu!4,*T(MYBBh!JB@$UCIKB !Bh! ! pý܏MW N,cڻ+R_4.i8mg-V:@Jm{p Cq [ ># ]x?RC@jnmG4W5 !ØX 875HS`SCH!Ew2#ʶJ" '\`RicLI7Ѽ wƊYjn.v^P&0-A{`N dF4g{H.ReYl:CHp=uZcZ;ʠL LfsZy6a18B5=%*Oa :nW9k'>jsKK!k :` Vu\!ZF~X+R ۡݪ >cBX)F6G֞A2{X<$Kv5Nw:mv1ܭ.-oZ;(es>>j#TRdu{Ɗ&ts]? onlt)$皌$!--1(8-)&.!q(A>`hR12h\&y{o SC$GuY<5]{ɺߩUab4@L8t7F0~s4n-ܭ ă@hü) P[3{LZfrӐIespUP!)S.ciuU70XOӢuvr$Dz8Ci-pFe:n.DVsq!QngoyަD{ }wvYZTP\$s3m4 鱏kZN`p#E63ɣEi}.`7. (i,ޕ7bN&pqx+M q' Y t, .de 9tI='Ѿgjh޽Ԣ-1m&H:DBʿvhc4s\-^\bkMD-vG@굳-n)۵<76WG>ִ~gTۤ}~QQ0Ywh3?IWK y\7-* ,dY,TmZ%bq G,+f14G>v T/Ѐdw2|"ۄPkYna~I :dv^=KӚW*{:SqNJڭPi ۆY+;fPX)fHs8G  FUlrb3q=K[jI-wഏҦs˧(Sw7TZs ?µFyY8/o{Gڗq%bVʮTPY7GxLAmET٪oiY5zړЙJ)bx|Z9t 45nV Vmjd07H-74xv͸pĹfX'N k٩SuVʋOmfָҹSOt &ՏV79 N0vb[۷G(?F=IjCk0&_mׁq,aXU=[XmNdڄ`g𬶅oǩ|hzN$1 18-VSpzt{mmZK~B<4X8. t^6֣橐 -hqիWJ]V2UJ42b\/dR8fWC i#n`}P2f;3ϡVh`ө:rWҴ֭i[sȖRfgG,PCv^zBIU90GH"d-66w|,<12 q)1-FZ\X.pv\Nni%k,(⎣kZd=%L/u6mKFP{ɡ>&uWMO ).?gUej6 ']p쥥w8Ty:&#\4st*RsV61vkä1ڌo,t[Q 9W59L¥1;oVuv& 5H %-ߢ]O9( ꆇiޢL' ʎ BPYpTaFaD!f`Д[! P!PB HBԠ$&BhB J$&RFB4BJB!( Nlcڻ+6?]կĖ4! )p,vр_fkk+g救 qҵEL87.l06ln \4KOd"L hGTp^*͕4xR'+ 8Ag#vEMp UpBS^A6-`kDi>RٛlN ^Gka9OhV0Z*$9@C3뇃XxL@q?U QRi0B=vThw$UvxGh 2KjnFjM'$;7H;Xڽy=,U-s[)et:=jNFGd(L73Z *Iy5!T>-&w !O!9k@66d։UT-xsIr'ѿ'y0,*<4z)@lFtFK9%@TcZyCkD4;.ŒI*5^憓|R-#a-;$::q8O N'D>K*Ӓ UZ'-[jT[ !I~0PdI%PF]Nmjt% hdrjAڥPÃDޅ'`˞b`f>!V!Ә mNc+TF.{BR\Cyl)|JLD4'BRs^ ,Z$'RrwyKi сJF'/5^pg@.uGkA(%L4RTp[w{r*ӱ*a$r5Q[G1"z:z[asVͭ:*z:-';``]&dBҵԪ64\vtz+;]h Q m^- kֽYʋ;{Vb4nݚ_T iMI.kneW mHp?\y}k$x!yo ~Z \d C˾6iL q^ .\Ǩj^"a4% sd4oMR̬KxHT)'@R &F#|A#):;Bs̠ {Jc- B$`IHX*NU Q f>g24ޜ-L*)Ad)()JH"I$@\q*5BAܰ^\COL*ޒh.xUj$1 -nWuE+JnhsgJP2:_G?}jm7(<9Ԗ#t.[N`(-ХhXϵnl6a'ڥ#,7۵FB:K(d7GIL|6bցGQF;ߜqP@*m``к9F(X!JBg N,cڻ?͏{Wr=7]%X@v?4ncɲ6:OP;mICK~ #du<_sݜ4`U3ՠw)4*CfeiY`,!s951T4A7j!9@hǘ1 ts!0\R 5\):?J}#zZ, s73,|`Ay YU3ɧl#0H %[EY@Ms(9LӵJ  Q.:bUb ,qHHRp22tm:\>Ɠ kxB0It-ӱ Z :?‰Z%A @i8{\2Oc>*$-NdUZlP*}Ts[t,Opө;᪲ !sYĵҨMCj J#pweId7t'r !x{YIۻ a^PU>wHUTqm,jKNv!J|Ўf<SA͓=wF4iܥ0$뼹XrᙃN=e):SSc}<>Nj-M5^xI;UJ+aX`a8bp>5ç'\ͺ*˔Πa9G+@w9ohLdbY"@- Rڡk\8s[% Q0He50hXK_ %B}U)K+t(yK?8#_Ờ2XV$AX* \iKOfQLPewo@͏{Wr=7\6?9j~XpYKq{CC tt.M[, ;+ӨwҡYԼRZhXݵ7ӪHSl2WgTGY'3OE|ޥ~kKSɛ Zc F6|}h;c`ƔicGkdf9e vh%k׷_zX^AP̞Vh<kx}&m\yt_zYt~{K2)զZ .p~O?z䷙Ӂ(hT`N;,t&h}CkL'cWi 5Zަ#gsm![^~`RƯѿs*Akrv )ˆ+G睋׎uv]YOhѽV 2XCX'H j~wͥ_jdϒU]e!t Y!:Q\㶯 qwՎ-פ9~- eL-inՐs/:K7mBBSd4yNg]>\i2٢ҍÃ{[c(1 eEk %މ YO1n6Fݳ?ݒ7@aSni?zZKѹ=R@% osl-K`^~KIO p:6 >w1CVyᄁ"cYz7n0y1Qиx-8sOjvl͵<"ޖ]e8Pz2ë=iFaHԲ'A%08>h1߅}i ګ.6jk=Ɉi$v=0>Î.FtTÑ֞snloˠ;i!Qtր{8M6mL'${Qe9AQ.imeS}%KO;kC/LpB&vZo&X@hç[[9y7ކ'%>OZW#4$3n0 ?} Q#>.5tp =n5#@[ڏk)tWqS OmEzAQZ iN)ky{]a*ul/QwG( ^ƥ^:ƕ;&Po}]בl?XmCdm:USˡNV>QéMr*{MJ4†Fz\1?ɯm1>CeuWG(ZfdE=ץUr t׮Acy/й쀃 W9xvPjŨo5:[ iR=Ap yޘ|48%@㖈Wz9_JVfsK#Ornp1k~G ڟsW߳GJ/'J\%x2]xsy8oϬ8zVs?Z<MRL蝛pQĆi\|0G|HQ%PS:"::T'$+3 %r6 ִb7_kHm[pz&u% QLP=ɯq|7k}Pt r|&ޏ=ɯqӠn$k<p\ϟw5>)Fz<&ޔ'B {S M|a_JbЛvv)lz<ÿ&ޔ3Qѳÿ&ޟo҅3r\o5>LOr55>yMJbm;w#o\o5>Tl䎍s|a_Go]lz s>|a_GoԦk8m1s|a_GoԦ#9##y.sό7k}yM)23ѳsό7k}ޔ4| 55>&ޚj͏{WspMu퍵at-/R@#zܕ3K\H e gav-0.9.1/themes/yisus/ball.png000066400000000000000000000305311423175241600163660ustar00rootroot00000000000000PNG  IHDR*y@tIME 5Zm޵ pHYs B4gAMA a0IDATx| guf^{w[RԒ%Y"m6610&$3d!dLdH!c6a @Bؼʖ%ukno-U|V%9'vU_{~ǿwu[T;/7:-t:P$Qyym^Ll,uRO4mr_$jsl9v;nk; pJ-P;3 0@ev*W7~:7 {vssju㍠ݕtch:mHC@OrUL6o AWDUͬ7+fhB@ q(dyAa(mgeI:yvDlunn\&{/(r/$ YO$Q0lC](pOex޶[}imĶCgśKW*5s`˶W>/^X^T8Z/,V{ *]d|b1вq$I*ݲ@ulX-v@x` Y4Te;͖5cջU˲@  kҵ"Jchw 5!\X5+I:@:D׹L6 BD|Ͷg8n56 tBEՆ6{p=ʡ"mQ,Ux_|OP1^5Pgnwg6rfFJbފ"LjfT=~k߼e7!N8sܙ3]ZPVNO#"X" X`0LW,UL`D#aq ]3>vϼT@Rԩ'&_T̀] =7 kB\i;LbGњn!NTDAKvmT1APHK@·C"9 nJ.4\pcTmY9x#<{_?wbk_WzPO÷A jN˱[3Ku?= xNx(Us `m[ T%B\CS'&WWUq4LS7 WZ*==Լ/D$.IVn/ 'z)/- *V~>7ƣHOu=<^ 6lhjZΐ'xF/=6:<4mTR@/`bVk9 PmYATmd%;^8lBr.Xwkߞ 8q1/㟯=xફ6[6xG <9_~[n(Ue4yc9`>d&$f=o%۵㟼Km--.l"Y,a$ӯ~+Vr!b @P\],-zk86DL g^XZ9v|2A'%WQ]P{M:v4=|!ESO@n@ [lבD!/Y5M*n:(V^dmCG`@w TaÃeHٙLl(BI ?|H@pod6x%B6 D5~}b|dܿ_J暫2@y|NT<&bQlFz`|,b1դp Uh}:v-3+DqF])d{{QfgB@_ # EXLJ&PI<_ϑPݽ[!933{Qд33Xg^ =fdr|bW4gT_XwtjP(e E(сj$F~|I"Gz)ܿobӗ_oTn9dWoOQ%!ͪA#Aʓ_}+O>t\5>s#C}=d*H83$D*kHPj!߁{Vo^uMԲCK;*nq׼oN;k#*#F.N<Vat>ѩE'ɗM3 S)P[pǧtoO^nxu;wKI)DVo$p$,Չ"Eꭥe϶=Bȫpp-/DV҂Ͻg?W. >7wtwwU~Վc#*NNX:B‹34[o_*5@8Q1c պ@LCL">#^o:o|ҽ;E^WT 8(/-ԉSu۾}۶a#h(H֨VC6<'DDkBi*-+qq-ۯ6?. Hy;uرCCCCT[n*W#*}@9ޅ@\J2 ]aУGF|+oN$SX hliu ={ TDԩSEIJe UDZd#;Z5m  TvJ/*H;65ura`(׼s_XWx)ܽ5uTj igdD' S/%r]sEӽږ\i4[4-bv+uExZ̛-h=,C JDZRG~$*F5?\9{nmU~ve-w5_RD) r9}4=t`cGln_$^Ź9/[nubĮݻwZլΜs<^|̙zu-؛R>ZIH YU:ݡoЁ[P6xZ-d4UNwh׏l ~ħun=|軏?m֛fؼl CRT}GSosi~u٩u/K7Y Eb7t5=eL6U58;EDz0h祀cY4ha8 T!K+4P`#yc#Ë =H1jU]=]9H+IV+W*X-ۊ%[P@ʮKyرT*96jpd^w}݇_;xaf 4PPCAzh) %0?8($I~Zk[P D" ۷/PXbmFqlR~5X,kU3G]3jI=[MGY'nk[;}vvdxV/Sx/޾~/w(Aq$y03o}LwP,fk`' R/7a#<41kR}.9xRW6uppDy nQ+*HmIhZ^l84Ҳr+UTH:6K+ng+*ECA=[.ɒ 5(`JIڌբ4-@B3Oy25[+7moZlb f+H/M,J>pP/g3R.y֥¡ ;5꒨&T?Vs5ۃ(. NefT9sfyiV`TDo" ؽi!`<Ƿ+n?lDU4b 6uXlѤB/m⨤FGgzKCͨTUDbEW) }5_X~1>͋dpd47;Ӷ]G؅\C.v (n@PTeӶXrpo]ڌ D\]U4!@*[E%9n4+rT,FáAqL+ eYsRr| cB=N U$,$Z_Q5#KS3sPpc;-ֺ$X6 k0Wpwk)8mVL4tGzzbtȧ+w=:ޚAQ2!UKu< Z_Zk cm݀JѰӂvW /{IZ״X$Ejnv,EP%ICS$x/K(BUqCsmǂIFC%fTHXiK316ЧJ\o*-7_2Eww%1UVĕJ"ѲX( Ӷl܇*],%"XñQX 1/J (UAʖ*h'"`OʓN v3@v$P8vͨv9ʇ!Ԁ Uo;>__mFg|,X^Uo5_!#BSi6 Dn[b#aov2+˵j! 56NKƒr#HXF4 zݰeW'v)y{Ok4mpwjFRw/B>2y1zYʬՊU3 79.L- ܅* SujJ]6F=$^o#.XPb$*I1[* B&pZ-_՛VCP!r5Td5xjvutwW!A' U/{P\-*؎g;jzgƞA>9- G"P<'R ,Q1B˯=崃!# Ck#J#g{(=Tp倾VE?ٕ-0 7F_|ne}ܼ{tʕҊs}} L3*͆]Fc]or@FԖW3X4%Ho {} oskbT.Wk@ rUODRdM PQi;(=$jV T=  )J&5nXuqz@Fe\Co=꽋Z(|bT@@QA|VX"PmY&+RZf\̳lR9Eh=P]QU݈vfg&]PtE,xPY7!L_ ?<l;/I9fcl.7FPP2Xfٕ=TN@%@+|ӶJTn*=,z~dcߞ5,$>}q1(—bTTw$-TwZ{v Pʅ TakmDbL&̓\αM!/=}HB1uqSL|ѰlևT(R2]WuuudBi(?2RU4lSX[EA=ڻniPY{MHQYu=#󳧣O5C\f.xS;v@NQ I1%\^@@]΢+lrfvQMfi'@:啕REmڕ}9$?}vU.s<ї\s0H+/zTY( j^1f?AU9%M4jֱkl4 % l2Pp$NBɒl#G?ߟe#Bu? :1_6MԞftucV gC)u: ͠V (XKٍHt=بt=dIJE#nn{hZbX'53h(S#1M9VJ[}+_}/;Sxselp[YͬK{H6 wZ>tK/A;΢Wهo83GɋtjLn@똬SWo**5pN @!u"aCT!Zhq{Bq uŲLSG|nT3ssc#ӁJR_n-\I߫sC=),mŚ a=9Ap֦YS /I'yJI|-0.1ӝǐ y? cqvqeAE #^kwΛh_4D(J\oPss>st*Pt;TFϒzЂy\am3Fq? QgHЎ#`o $R=Xy-^\]_W2P_Jba:UZ)}h_xjlcY?" ?4FdZт`b0! n`|P#F@PwȲMJKOV&BPpE%<d#Ȃ/6Bm\iyo#.lYXn #DTl h@Vz|Q2?O]'NٱmvvQgCa C7ѕ8E0cW@5N0 źܕJ!\9MUdٲfeϪKJQS5~^[F96.YWJjO:4/FXY XNJ"G5Y'w8[n&|JUӤm$e*\:5IO<7[޹4wmpP k2@Sd_ ^;AT.aXVx&ueu]P~wեFV(fdY$YZv_xrяjm csrLò r:KRRwA-?_`ǻ}G=4$nsQ3f|ߏ\Qv|f#(O?/l>n9\F@èwK $EZw@چatǻPefe^ H%Hȋ,$ɮT*iV#=%:a64=*~/W {f')۶Ӗ`1сMf5\)W%rߟŋuqmR4#ɐE٢'i73kMnc GqWaiWhSE2 |(Fo\9JQZ[|/.JzO]^&u]aA[v6>wPEC F(hoOAH.4j㞻LUfS8/~WΈ\Jr8. ږ/҃f3_,Wrw=s_5GǛ'Tkg8zӻwt>v-uc2;iŐk Co9йdbC_y{uAe; =y/ǖ6Qcniwv*GxxOk4,w ځTs BNR|VUe,έ2o?>۷[`Lc%A)5CQ̺aGќ~p4?Yi&@o}ls~#1/bNmbے)1ABwDo\`G! )o*j,DžX{ 6!PC /~Ro !|J2RȧGl:iNQSXiTH+|2'ssyI2*JxXT$Ā g2|05:3lø 0\&Q҂M 7sw1iyJ]fϖ{_el`k91*T=N:ELx"pa]>𮿧_1 GqL .e!1a'f]BIz n@]f7$i* zd(E!lԕXיHzjPŒiYxF^˿0Z0ЫfA)%Y&*M@f ls>BW`Hh\!:2j{ӈ9C~LQU4m i ?;̘a׻|㦯q!<&W$ }E`Ǿ|%xթr* >Yh,R! B&Iz*`A90 F6y$ LO3dIc2 R[_%4b%`PG9-SCitU"x`c,56?-ˊ7dt H>#嶣;M^{fL3Ѳs\ɋ H*E1\l =$s%FJ. ñ2HmT&a Rk-ʒG<@]\(buSٗAa`F2m|:htL t~I"e=? YwL22z߇d(#G$k\a泟a>~%a!~YḱwTb;R"VLYL9ٴg̕^J64؃g_p"mtrv6a^=kNTZ,/ ӳU6&CGG`2g^Dͮc!l2VI|1)vtAƘ'%>SH.\X] i-g̕>"2h^QMDPZT*6iVBV"& ޅJ}J Cş|;n{t6ߜ0=ˆ0^0iA[)ڌcl3υL3Ku+Me`Υp cܱ48 AXydzw4u3h/n5A,`#Z9<'lGx]IK!OKimД6i޺fIGk =fm˚$uw@d~ h}rHfEL/zN3]2-Zth]0qxM ?+o?ྯ?C\6 ;p>>y(=R/d(_;TH{!:LFe 7c`*[zwKtkĘ~FN{oXIN@ѣOB܍`ȟJ~9\əOXK8RKwo~LAѣGpSG4$?3W7 yKS]/օٗ|u|w9ڈB`G0 K/AEH(U4c`xJgٴ6'rEkΜ"6MRV!ʒǀ1X!=Y٤q/E!NY(wtEBL }|<$7I<;sVlwǣ >ͫǎHjw|;Wqޚ㑝W8er"X`BpB1̐ pǏ:Y;$\ij8w9' IS9\A_FqX!91uG]g_˜,7ZOm~MJqM0AykPcL2YnܠmX>eH,I ˘]~~eq4X-|ٓ+z<Gk:bfvq&Ip"Y'iHE..z ߗ7F AT"P Z:QJY 0ESP_\meÍ_@eIӞ&{^ȷ*#)#'6qC-S&)&ķAOrcMYT)Q y|ʮBL5L# 4u’sERp5+k,uXi8gٹm(xIN+s{[ܷݤ:7=8w%jQ*%u|/[kUx\,8eh U"BR¡08@f?s7~rka#b,KqձJTH'x8R@ 3I}9o$q}IY_eD?A۬H;K!{ZO&zUbhN!E@HT`eegAEsgrރ)dgx"*yԇxGpuZCaB{,`i4X)8' o4ox9y)*I*ľCg'أI%pN|;=>!8A8)!9Q>.r(-Oҙ⛞C*;+Mf7ӧ%3oԸ#D}8m<;; l;j8sǓ~*zzH wi‰GϝhfnW̓7_'ba᳸9r&&iaTf4Kӆg&(sn0ĩ :eslH"tk&/Y.︓s兦÷+| \9j['+ttU\NxY_o:/{]xrB^PX [Z[?BD1gLROӷ>!w^̳UY Oz*1|U+nKOAjV$JF-N {#Hqz]fVR.\ q ChG*CW]a(֭(hh4``D(=6)3QaWVb'l/enpT*YdH/˜eD<~[0އ}dkOOIz4TFZrzh6:FW|f篝`"u\2R0YKdRUtLLTzYuV2CU`~xFQP=-/<|ixJ"NL1t8l47gW LpZzVw g'eBRjtD4uKhE_y4KG̳d@#%(JH $=8ՠI&p HTK4Z}$##%ÒyMiЛCr X|1E\fuB3|NJ87+(_Q)^( t=jm-}I+%0Az!Dc')X# [avrhorKh#XgIEƎAdL'oRSj‘=h hN=tڧ?X艧I/a^Hkb($-;(3ȕA jUH{T{ h{>auL-qF+@J2Cez1C+`XN EyUNGrQs=*8)b^aW]tA%[ w=""|SƑR'GxmFX+|@p&`%1d+YP,4|^haz(N|t%|~c#$#tC؞fJ(,Zg( \QcI1G(  \l/wv8- [͝x.vGG& %hc+#PR!HD 8H |0jo\.uj`8񬚮S$x44_M4z 6NgX3c 9pOiD=B%i_eI gWKܠ|NxUFEͦ2z=<<(a&[ͬ1LyL-qƯҮ9w}HgؑbɃpuD8QEtnXuFj'^ʕ^h AA`1>]w~$e#jeMBeI$t>9ɐ7-N*ʧ(_]'U_ļI20p \5j=QWJDXZdd4ڬ|YYhBNqLWQbyO}{~t}ٚђ`U )NI$@9L)kEJyh־h5iM+-ǃKY )"itX`I=t:(0ƐeٿNkrE-y[^j* K;D*%5^x?aF7li#EOJ@߰|DP7~qw0T\/̑mL t )3p/|\+*d}P}p$B<"_/~˔N*e!K2qa*t]ݿ ^0fQ.ń`\Hzhsjֆh e*;:x'߼F=okunl H(.UYzB\&4R$8CY0_FM 19ՙ]4&lf3ÀИn3c:s#+@v%i-mk|b!v\2/=M|X7Ux:]΃(⋷~%J8*,_@e#L. |kl1[6] DtkuHJk̉\+ۄ Z8u UsY}892=Oz>?u*N8WdnF7|]7pdt@[t>D+2*rXy=8@k(5UsJBX4#ֲdҲcI z(Ch,YZ mR[FYr{0y=xU_}o5Q(,SLHw)jEGGAVX PmFyvAce*!_JJ )4H,1-;+4l:aAx#1eoz~ .o&HƄIBl'ȗ%@8D]Lrx'la~q q6Ìe6ݔ#EO;6gvv5rSe@`:j''S!i6 +Hs4 Pvpv3 ެL-&#j,iBFsv7+S% i q E.;rB <)_G8<0.gx̋ =-z? Z ?fG+qdBT0 SU6 hn7s"w޶FvỾu>N~:M5%*[y__NUy=Hujs~w#ihc3hc"Xk _tɭ!51SXf:saTNxA3;Z7vߞӚ_~᧹??DBȰ꟢)&s_}2 >Q8BtGKS( Fe&bwgjߏ{7 Ӥ(]TmvϠmĮ-h_B(NnSc{U^G^]P %C~y` =NA09LFpy5IY8n1t0V(}{lbYu Y_E =@ O^,◾k\ Q/lw>= (8oO֢e Jr  $'{;Ou6Xgƅ gl7!c+n=vVR;{?e*iRfYB 8@k e~l` ёm۩q^qb>> +U)9_zS9',vo7Q\=־HLl!*;8L;U֎¿} z%Q q^w>na$ ۞V|ml*ܙIqg:֕)R+~A |`P@!x8~ͫ8FrOYW$>م3W ? LFIlP^qk8!U&hF Ex9Vt]^}yXuՍH=ya$Oõ\L}БYAމƒKwBN %'x/8%g8%g!7l⿌\5l+&O0+kgOPt.E 8W<-8}\q WN1Sx8>w5&PYѹڀ_'=hO=וG ^㴹bCka`k'QDmx;"~)O(vt0*o"$ıg;]^>F/}UORlY'O?)9xnAŁ'KEq,%hpPM݅.泛䪅pS|rF lc-;(L7c: tU曐y`3\Ҥk$(PAx@dHY|zGcM}[R D0%XrP{k/>Bu~+V*W\_u-ᝳDғ]Tj5jM͑N!G;p&G@X7(ʜFXP#a. `R W ~E2hXNv)5U|d@[P!%q,c\ս$γI ^7!%9mOIs*.NVkE0Q]iS1IC@,v'q1Soۆad¢mq5g_f.oAy}\8O_6JS2qV` LPjRh5α,}Wtg}r$3R`"䌘׬`OƎ!_aKm}̎یֆ(b؅SڗXHV:50^@.Lߵ9Nt!SˎS/F.[YZj:@ER RJ=5I:rn邌zt]ԙ,]]#088x =Z~zBz*U܋tI|U]˯޼meTN"cGYj2MWw|z,l+gOi?|z!/F.ӊR( j>J3qھe>|5}x C%vt&_p2?>xzvŰpi \@5]r\iTN ɅP1S`1UU #/_~b_$I3 B^ql2:[]G+A4HPD1mWY9zl}.E"- pXJ%Ք߹`S\ink7N}rb]IW!R1L蹂A[?{Wb VJ`e wV0kz)=Oq"t':>6+Ȍ\8?Q:KӦ#񔣘4⅁'Nhp8 b<8[Wfz֋ښF^oß̌|ZsʥwF"cMkXj03^nJ -.xݹWz=otO[. x`!gOUi ~2P:;,..Ryaa*.Eʣ?бNj ȴ"}?$29IˠqY4 LZDyd@ ~i衖Pgf1Y $ojlt}}vyBowґS]mmm6%x.o+i}[(3ݠE6MBGUs+gzv;zFu|KMQqs.Scc3+ߟԱxg2=9kDعs,԰IdW;2K@C\"6H(=x $e6{+v U[]%@+Z/ک&?Ԣ3Bވ٭[Š7l]f0S fUTD*iֳi}mvP|"QS"EE!ՓL&.|[HVIY`0&M\fbiJA_JR]XOO?8zVRb$)oU q4^Ϸ%s%rcbƟn9UM%خp ̬-x;2x"1;;KRTKhr鉒Yʖ.31/%TEײkހ74㼦[ g3❗\ D/gάF 2=D'O'hMY6$qc^՘@2Vt\%Y(hY>re&P: [9w̚`8z=y;Ѭ7zY#T^<>^!n]tFG dsfP4_mfm( B,+3뛺 65\W=4Oq%ʠ!Ľ 헙Xi>?Ȩ$.&טD<0E-foZ~p92Wcsh;# viekOH:e|aMFHGД$ ydLf h4 S )VI\f<_8^af(|XKΡlpKV/8wt܇Š:=HO _Vḍ||QVE\fYCCp %MxLc%^HF>+Mi@]?VT_S$J}8:I}4ej x{PxDt$+OoK.\ՠ!KGGZc_NS=՞雝.9}`< 7>t{9--.s5+kF֘M9?R"< }I B P$$x J+sK+^2U gv57%Rh6KB Sy6rrNFFg)`jܹ]-.sE)^=v:.9fXޚ~bjr|jj2v)Ey!i3.="n wOg|Y!J}.[[wbe.r%Zވ"Z()’v}i*'B167ߪr]f.RW"G*dK>g5s"qЗ /olhkq]f>G^kV\\no C5ww7졊]f.`{lscf=ՠ'FTLl_3wbsdY%Mò>xY+ EIA,܈4m!19?\wolyA]0c0 ͹Y(j Hͼ?Ip[H1eQ;7c95%5_XɏfMm$KbLcx. ә0{|";]ɰ>uQHecޞAW`m*w&}ݺV>%*߳mnE~1>8J?S ,_ ߫߳blv ?;5TDE%s*$̙3M`XZ rooo~*5 v,_gAjFhhݍ?rPlzllƟ`ͬ5lvR?1hrv +9xPlzdd{|&I^J)Ơ1Hy̅lH0%I9a-eZi;v^gT'є-7" AEP L=lzԁ ьowcu AdqTx@K%Q D'xLQa`寿켆ȅfp0р ۿdNET[D1PEtߍy-L :U׃( e$;uÊ$I}Oay2L--zwPL|\qC/M87JnoSջ3kH=PBS3NnfkPw̘_vR 4\Ig [̮mNJ? ]ѐ+w>IH.Q].$q& .)[O̬]lzm3QlO~[lq|>8|AUo/,_$#}CAv8pXY (KڍGe^QWߜW?; 1;*̭cA_ z3SC GAFOā%C'/m|Lu=O̿?{rH*fQV&dnE=A >E7}dtOz] z4 ]~jbd;ލX5{/_b`ϛ;"Pl NlL H@$~8w ݕbt[ArHkFS1Bᮇ"dd@cKGW/,.&S˿5,^{7>Ͼ+O>|~|rrޝSHa>TB!Jpvȯ*4N@4l1_Y{ڭ]\y=cL" P |30\>89G166=44A~ޢpW_}ueeEessݻ=0?uʹ((i> /Ds>eYx\,JTpJpD6wec yG3U0̡t< ̭2 ;.4o~;nK&F'OMO_ä-Ώ'rwn6Kڧ,>\1YCq- p sL>cWޞsC 8ϓ-M܊zn,s~*nٳf c]K*5<Һ-ܹ;7VQ.J~+b{%)C퀡6fk$ήM/oLƬ7 s+깱b.z:ݸaRfsy45^~/pSlGD?X h4>s3+I|NMm ˬ%ߓ5C(R>mW6d2KKK֋%UṰ2P8DӀ^]]ED㱍xlc#(0~QO3GC߿7L $(2!B4f"!k v>l: ɇ/ߚEzzd ӆl܊znsAT1$c-| #L7EGd Oߺ??z'ahthylРM NRxb ,qt Z4ʬr'Y뚙LA%^G:܊zns)gqKl|ar pt9x'qmb^01rl@u9: +ح? 3[HBxi[QG\aRctBlyMWᦆ$i7nm5zѧ()ia$e.i%[QG\aa'Fdr/|.tBi{MZ{]F38{y ؂Ӡ6 ф.=a }r4++m̕W 7 !Wa& ) ,g劫(iNJ.Hkڳ2aG䎔{b"J\A/oyg9 Dd7o9 f#|%WpppYfNh*=4 dFf\_nN|'Tף'=~)X< =4LP;.v)aQ?sb6<)mf's5&yomk-tZB9( ;.I 4KĐϑ"Ǔm杘q?/g{qE5oɹϗir&Ӿr 9j\}r;h3wbއAO8;)_9 ҹȋEhgynx6]ehQn w61d-X'ND^ungLBU.crQwY^kVb%aH6ǐym塎`@r9kAcpˊXG]qR s(&\qe k#{~f>n̻O rtPr}c3D^)hZRQS5YbxCφ6_4N<>xZǍ |$FeKdnHfqV\%rz0fԦ6b=Gv K kfJwzd/uRxi||r8%bODOȢ@b'Է@t? (?Km\f T&; <ֽ<_ UMs[hi!7S[ǮuxX9}vhCSeN+骔_2XG s=4k˱T-drđ18{H/6Xk=2oiPoi\w=秺#nQdAYЍ+Y {KP1̸JlNӇ=2Ӹ P49sZծJ>%51Yz:0OR|-; e# 9f tZԺ-53j+'[f49#opÂ&gE׍;# {hrxRdC; 4s&eO&sc#A__X[o4r)C),DB*QϏٜ[9qQEkZ?#{O(u6hfqv 5˄~+yv(h-TtriÑdv>Z,%IּB҉ 񌕭`e4CS˧MZ FOOOTZB&~H$yð#NTV/ πaKWW݊L^8@XN >P^vk)/ r!jZUk٩&$.U HJp ,P8F(tOx gД;eK[ؾ5il ,[e!a4ُPDHzB]Wg>YE0 `=|"٣/͵oD/0=cUd>$8U|0_ʎ-͜-CPc{=&t*YS}ǂK(;4mr%9`S:z;.{E*=BM463CH-yO0I_-(,X]u9"NygwCArVCtMXs +*4\IPpkw<|SFse4s> ,p *^IENDB`gav-0.9.1/themes/yisus2/000077500000000000000000000000001423175241600150265ustar00rootroot00000000000000gav-0.9.1/themes/yisus2/Font.png000066400000000000000000000142751423175241600164530ustar00rootroot00000000000000PNG  IHDR6tIME 0[S# pHYs B4gAMA aLIDATx5׀ et4cQQ]AQ{.( vGTD숊;+ Of·,&ٽ{q&MrNN9i O;~7&9eGܹēO>t}׮]ů*Ǝ[ pAoF<3eW%In(ʏ @L;0'o޼;e]ԩS-6`ϗ$N @!Co]⩧J}?:̙3m׮xE&Mħ~,ݷRr׎P~ڮ l,RS5Ϛk)&O,/{;yOfʮ~ / Y @ PWacG}Thb+)@ 7\y .3=bڴiKZ_~}) + D@iwN{bСeފTbQ1w}s='#T6e>nSd;ׯh۶=zt#Fs\8hܸ:sgb5?sޚQ!RR٦ټdޥKqꩧn={ͳN:aÆ.?NK/x i?Enn|6iN;-^߾yV,vΜ9ғ.}a^E~_RG>6~~wꪫZm  8]1s{+Zj\t6WW3q~i纔wG3f񩳭4h >`ѣGL`oϷ|㏵Nڴi |C{McoFX~ e_tE8??oJ?w)?k|/ QIFŸq-[ou':ė_~i&mᆲ|EE^o*Y[+vJ'18ᅲ.0~3avmķ>3Ƣ?DvaE@HA/M6D曩ڨQ#Ξ=[*( ?,\rI-_~|C96L3F#XtEkzjUyX\ 3~>?|`?~vm76,i2aqPL)cie{n ?o3)ɾ+m\lM0Q5K.tgp|忏w)?k|a2^:5գ>?wըTg -ˆe PTe|[I^܊Ϗקw6Y$}fAW\7:;<guFJ|{#GQ. 1O/o c9ݯ?Nm_Ȉ <[mBR9Fe& I/{Q.]J-w ߀P_z}ZmBiǀBW_a8_MC!#ԴбG/1DM7$ip rMqAT>Fb C#S~жq1Agt}m}O6Az\"ʙ(Uw(9iH lghΣKs Dbۙ=&T:wQBQvygq-s]FI@0&oV*yu}ZH43$ӷb i0Vrw>NI #uj8H( ' R2F^W@i﷽Gj~_;Oo=/ IO> z8,vl!l؈FFI% (Fs,8P(ȣ9|Q&'ͻS(yBj쪢.uL-xQG]%+l-KWQ\`cf|s3_7b<`eCF!.%5 Ex"\t$֭[˱]F'er9qqr5HN UA*8̩W0\{Ψpu/zs N6㉣']ˮJ"GyxG偅o7za?SzecCUllF;> رcet (@ omݶ0#9'M$7dzItIl/hwVxg:?H2S`lPo Q,ncrvq4ݺu&L=P'-w_;D19~d:5|S]w]maa&)!CRFZDFmP~"Cf,j-Z+9TNxѨQ#Y#FH9LH6 Mǽ+Ӹ ?ec^d?ѺzB0PGnu}SQa؃Fd@G}7nՐᄏʠR7y/dQ 89MFCZP1cFw.N/ rst|LCi|&T۶maY!}DQ}'/.RjorM CM޽Ņ^XvXaaqo;ȑ#ݘtǦlW0<5)6o{biӦW_T>sPz|ں x6+ mMק snqn+|?QEx Hk#ipN0>:Fsxb-\AGD6 ?\cKݢ^Aw!U9&m@JRL?MU |8Pa%]p_; y8w)y?#V){J-=u7$gu+;'w xl9B0,J"8y99xt5wK2zhqکS'y6mZn)OZ)Su4\pچlV:oq`5mz3IENDB`gav-0.9.1/themes/yisus2/FontInv.png000066400000000000000000000137561423175241600171330ustar00rootroot00000000000000PNG  IHDR6tIME 0&QH pHYs B4gAMA a}IDATx U#PdȰLTƌaag %c3Q$2d(d,SfA(P!L2o[uo>ouZ7j< !-('|rԣG.l͜;vlKFÆ n Zij>JQnJ (ܐʏ@ P&O>dZkq{*+}oʔ)k!ϙ3'` '~ @ +^xatQGE}]馛zѦMsg̘/UmݷRr9:BړlG ~u/d˳@!j>ZL@-B1q΀ʾ@.]A@ 4Ux}e, 4n@YqW'vX 27:tpn~w}ewA ` _i|0:v}zoTg7.j߾}oDᄏ׹m„ ޹쇦@~>;xG?ptꩧgoFѬYʹqo8D-bc=f[w>˿+=zttyyOPğ{Ff?/xFw}w4tPq1~t-x:dYwnɧ~\t6W.ggkTK}́m۶.O} <8UãFR>Y zV]uUm93gTYǿC_Վ֭[[#UϘsn u_wuѮ*"O;U^xh]v֯k+=IK2ȏn!曭Ko\0_{'Eԝuc>N?w?c_&A7G 7uj?|ԩSh~g=^!|yw.uz|Q%|uTtrke]_" WdV`bGYYwu˾֭ĈaSN..X>Äp 'AP:ї_~iTUo-k]?P.wq^矢c=Vp8vw8~/{ bkgZ뮻aȐ!.H(t2UqYgU-i8.y LC՘aIbe1xt=e3{l.:^W j&h?ne.MkgS=W^yeQ&qTf}/VWd{y]$.Ɵ@~s1b_~Ki,ߥ ݏr uV,m a;E~WQ:@5Oi?i9rdt e Prȝ$yVv=lf^o.z}bx",{;%u7;%l;!HZ ~zt9'O-(8ԧO9re4wy׶;kHڨwfN@Xb]vpig}&Pƌy^uč?o6B1\ 1ӣۮz饗:ȫ\/FLum{uOQcҶY?<#/H{OA }wT>?2xJDu|FU<αnm["bƤIĽ;sdԻ꫋E)kn`wUMy.uGo^$\u,ߧ=jQS_ߩiJ'<۝:\k. {M?.# 0%[r-3_EODyWy",,ׄ -w .^e[p ϕiؤ rܪ 4(&:t k/:Y//;#裏DʁxN8(,J37߈=T uz<䤷j>cK / H+EiӦ(g'H{>z"LHWmߕLz(LO T<0< Ӟ|10$|OmRھˊO I }+ӼCӔ:?I9o*N/pz&:90W_}͛7O?r ,ϥmӽ[|o-U~`rK(o^[cXZ,FxU m6j i}N,T3.P,}`^dޕY kxÒ!9þ*%c<8QT{U>ΜO?{l +Ii* &rIOcP!ZeYFyJA7?e8H\ U6OEH +\+a@y.{D]iE$zOEv|JW5BjG_狧.6|O=P{0>&Ch9^-RYd:/^? 3QMGq\xr n&Pr2W_ KW< A\]5a>pkHW&Q?e 6^jpiA|GK!h?uH_C eaW^b@IYV's@_{я?Qѝ9>@fz|2. EeJE޸Wx"6iT=Ox6T2<'r))QmE auj}2SL)"f*z>wo%t @rfdN|LVҠ{9 wtRA>sdT>2$/4~xkO%}d " 5 i -)GcO<IJ e R.!є~=Ʊ.΂Mu׭~<]ql/xu3*ANx([?X= L l{6,Oz$2 zDA5~~ , 4vҹvZϐ!Cbs=N‚Wk ]#GtR8(qhBRqJA/rg9yh*:@u!Zxo4o w=\-oY#O|=uo_9WPv`Nᖐۤ";1:^4oڌPNӦ>6)T)2A!BO}Rգ.'~EG^HW|Q^wYsaܹN{@^.]?4cĈ"2XV!oC~Tf8?YKCs&M2Lz̙SJ݁ Y#uZJ]ihQYi.0i1EFG]vmBBH. (@ [ ydtab7:ڷiEW?^ ӦMs ϫUȶNxARk}%kjW2N93WJ r(/ˌ/^޳?q$R' =p?#:xoi]?} .<'13If7]oI44<'On4!wmCs>W%z)Ԃa%)eÇ JyA<7o^߈zA^{2YeummW!y.0ɓv*#x@ɆFSHwᇋp]kZpMx+C7>1(3fONtm@:$"BX#!IxMf'\ G0je:N2=۷LEH-R\׷ckw~H[M6K$gyFtL(ZGz]8Ӕe*z*ٳg  )@ hj'I P$rk6v}ɻ~(uؠ'Jt@%xDžAgvw/ ylrȵx==kiB6SX/d}/IT dNGL12<Uy;42F8K1yܔڛ,cGEa85 ;Ӗ"j 6F4j7]C#"luO,j30/q EWc8f)wqt\p.(T=c`lgmj-Էl3 If΂ֻ,VEQM cr>">y_Zy?$X)Ʃ6*h<MsG$A%d؃|M#Sm~s>+"uV /U)ʹw5H#TMəĴs\mSM}t1I,m@ m˯)a5ï hs>ٕXvجhٳݛny GȢ.Phd9G6۬xG3UҺ*\[mC>2 =`gL(Ց7<)ٌzLwrP? N .'9> WXV+,4 Lޣ4zƧx9A5Z*jt2` t6ve#gQ;˴.{\*gUёeZpҼ uҶcUQ9[<4q+l5u8];dD%uҼnnP j[>.1ߝtXnQW􁭍SVNC;.q'| 5mOH'ssE,&zt}!B QUE&;ːn7s= QӾֿ>C%~'W RdyG9ڸΖq>aFiG1c71\{K|{FQt<'H_A7^ܹ`O_"YVDљ<Xߴ.=zG(L q&XCl/{AtrLv u^;`b}̴>zKIGL3) h ?E!C- vKe~.g5cGa͂"nc]8|K&t ո$rSM,|HW%ɉtޓ q" 8Dy?u3-kyymnˋպ#cyf .!벦m'G+))jKY[_U|g^ǎvGUd;x{|H<=T6\t>= =~T'txf[-<{ =H`q1#'.i|W8ᦂ}vWN\v,6[N`Qx;jZ-,yK%!Ïeof#\23[yqs %ƝI?EE VGb9h7XmEēD,t<7 N&ɫᒪ:hEH1R &ki0LrG\@_jZwЂx&;$¥\!ۻeÂtf?ھ;.gc &˜瓷F9ʳXq*B׶d)-a4/sڹ, v 3q-o`UXE %ul1]h& \N 6p[{b7n퍴h7 }aqT:0/Q+)MS$Sq)v`ܱ1Cu%U0q=tV({ s||@=08ml-t^oˤ)#oO#]QVS!䷆Lq/bzF9^G/Dux% L Z9) JJ-fJT@F)!E!V-XP!!\BB H@q R9a Y7k7S⺣Q-eC*v >-3"tYŇ\ ,՝xk]PZWj>[.ͧ|o}cy?7_?kʺNQz$y_$Eg]V˻5²6NfIakW.*{M2+i8>/j| h#s/f\O=/ъIɣcLL_#|2췰]~1ep] ק9V}4ς>GFaxv_F> {cZ0v}K>'S6*]MI͓s^)*+0EHQM#VvU"WFi t@1^!h<)qHDqe'ʯmo7̦{sJI9ɻeͳk|2uKFfMLTQ6Bєs s<mHp navntN\>9*kd厑тg_h%|lud %nKtmp?}/k_~5g ˂)˱,s;o{0WT>)ahdR\jZ`/kΫ@Q1fL<}\}ՑPAG;HqoG\? m>~O6;x! cP^Ln`TQPU-d- i9, UVU=E ou䌒֏Ew-n"o{:ܮh!O XmN-KC T⊮LM-pZ Е=wC*7Y;C 8kp#pLf12O3͗.a}ÿF=cNaS .,7,@wصoCgh6FqY>N@{46߼*]jZ3⊗d :l+:M1zG1=%%l[%ɘ|rT;8fm/⛡kv5!w1q?`_;=v8)һg+$5xuUEEQT?;{XT쪩lndihGw[Lֽ:.ˤ V-M&Ɗœ ǃrp%*\|?eL^B=uQKOd h?2gF\[\Ds`ְl[-ٗX>s>:_9TNx2;\vF->yy0!.=-%X7 9pdpmIߙL`SIN;-wZӠM/O#H.0pm cWP iH3j%HZ֐΅fɈ>FoT|c홃Fq=kC)kvwJ!{F]͸oj)|RB!2/dZiOW_YCCM$c#"ϖqzg4͆vp{,3m{9ޗ;:(6\$|fyGCk@a+??l8nW~vիdaT)kKgaܫ9ۚyÝvU܌.Ey1aUy0s/m#+q!=ݕ31[z[8#f}~nՇ5J)9ԧ .۾Y;f}gtﬦEvE2.xȥȚxWdM {)eyaCfSSe2̬Ċ+>n*Bk6jiѾUhb}ec)UvPvM&Y[d-a,rꫩk%9It y,%R]-ֲӗtKuj鳬{t3nIHR]KeBJ[f) bb0q'WuhUT,~y#̳WT{7;&;MrFETT (AJ )Jr!NRKY=揺)w_uUݤc{ݾ]6!=L3;s`"H~_| `"Ȅ[Y%92[ݘ6fYԓr'>`cKWR iMISMLY8d'%z7IJGRG,,ݓ3%&ftA8^mN0i$lmǿe)[)M5w䪜ZV%vZKg:,0!S@hY|W䍜^ <(b-3c z$a-}J#*]yhos&7UP7;n}S{>qHVJKL͐Y]jf^߫v3tu^$~N8`WʾRKᘸ4X\ٚGôgv%.Ixk|?iav9D -= cidQ& 0v7]-d3 ̮ګ(oj*c ~GKlƮᱚ)ۇ훞Jz#@d}TOI4GA$eܫ$bSI䣣gs ΑdcꭞygETJec+bl.g1A >JVˌ1ˇUBMm(- +ѨkRNC ,9k^8>E%jc6`%/,t~Ըk1ԃ,<*f~.쿫uG}$\EIj// >yCf;[Ѣ+ZVۓg{<C ZK]%ORcR<<eb~7Eedut6ip5Pk_̓aUaT>Ɩ^!2q#BNoUE)ug)j5޾-aQK.d)Vzv ӛ oຄjD֞p8'Q1: #VAv25m=N+\=]3)l`zZ7χŨvWKEPI`}\?׵EAnD|fq +x\P!9&k#neu>ꖌuSjRu֨2v8bJ \c*K) g;LJ9j]X?wU\Wr BQ-I !TU2JRQ4R.X{]RtJ %ZAKD)u D d+TM1I HY lY,[+Sy=MNy.銔eGZN<ó?g_2WȦoi%tY:V@E*!! ԥ58d=}3 q,tXs!ex9oBEdxoH=%,ԗ# ]|_NGp&)]5 fKFIvoH`-ȁ }Dw[Q0k3 c J|Iq~VG`1L}v)W37!>[%`|IK4q~/K྘b0}1|׉\Ѷ~r''| Ե1JmxO-{isOvQUM$:x¾԰ִRL<œ8۪2A A3x3?N׈<֦jv#|/)ZӾ2iKxheص׽.<]a 3ZBYsrڹʗ\ptGלαYZyW>8y3_ZKrJ3mf/Kt B%-J>u.QrA)COt.] =%-` TA3tI]-A7R(E%QhTAQEQE0QDb%L"XwNJlV4;1Z> |vc3Mn\nҧ0'ț"y7EkvE2,TTd*dY6R<l=>GzP+N|ǾJ-4yA^s{]d`W,̑kAK\<~:@ eW8)*kb!l.{֒yہY ͕XnA+|#qX\u٠,:$vZ+xcC~,ı^%gײַP`Ҹ4Qa<~3JutN(y}7$^{rwp^Í%'MT]%lAfc\&t*QXZ+%ƪonPiZ9cssSڽSi^=kxT{rտX S8jPOlW$f2%Ϋ[VJ^ NJRPQ[R TA(P(*eXTA KQ*Z%R]*("%QK-0DRɦDS"j|H[dl*Y\XOVS"LnqXj);Fb(9P }dZX]Rby۾o ._-A|+]XS&ZˍoXy!o50O E_҉c.ҊOk^|8WWtStI o~н'gb]IfLbݖ{o,+{7[_rok%ms~+:ݰvUs#2]-к*KuAKu.(к[t Kt.Eu.K7()n*'J`(JD0&[-E,SY4"9u`.^QY~O桰mTy:/UO7y*H(+CeRwQBzKJTJ[i]KNzZ7bOoG՟u*WC+0K*<ܰoK*j!e.!T@,ɔTYǥ/2=-lu 6 qq+6*\8 Mgm/\$N =oltJ(U*& # "T&U,D,a,Q4[&Q4K&J`YEMb%QBY!tnW.ָb\ wrӚ9)lSc6H(vU|<ՌdH^qeLhHj>kUIW8AJj U^Un)>-o%rȒYVDbYK-RIQM]V%@$RwVz]_#VǺKVVs9I7ob9b|?ѿS7_p: V|;t,RQBVnt!rkZ<6HElõfw.Y,k2Xtpt{[u9[]S )nnP)pkq$J5k\n9k?IBPb6Ta0fp;Vݢ=!P$S8s2y\j%9{q}#O沦z i6'QɌI$2̍Pn|` Xbr<-{dڌK4!Pʉ!sO{9LIb(kxWa%6mϹyFgcǍ+iɶWa]oI,ycIӼ@Ƀ샤;!}4ٜHp< : Ιa}]f#-~)^Ja[(ccr0s>ՋTy6! @kw>=#{f2 m7asq!.tg *s4hfi:p㺵K"rQ-S+K@!\07jYkQ3tk[u ɨmTbvKd *[_W@7Y?UXMVy~+Ǐ꼒z(d(oCj~j|~bj;^c~ݿq'KS|֏Ve_RV"{[ Fi%V:!tVgC:E.PVJ)չfGI;y>#Vw},-[z`櫄ڇ7UVW=gXޘ*.tRC9Iu.i>Iu.k]0ے5 YM^ &'E/kNGbenA; 4ۮ 6V8\5[$#0\{pi<Ή3ĵVoű|xXOorv os8[a .YvA| a; 1KbGdY79Q#׸Лea+@!#T<q`rjwU8|^ZoL\WY x)9˘$Ϛ-VUb>]76Y8^"ed"`{cG%s!'Vpcܲw?nb}xkYef\nՁSO-c[+4L;5{>.Tu+虡ġ\U,aiguJ?Z7 EK{m@5YH:^^K4M#ߙy.X9b|OF]y& DDN8uhdɧ ax/X.0j_+$qc3{71_btї9innީ^Q%hLmc(,.!(($#!i}/MeqS>gVXb{n qt3Fmw:ei:>~;d_ԬޛZCF~UXK5%k%b}] 20:2j]T2@nкRU(] Kk5-&mrh|O~uίV-tp#3%-MLW'4K'ڵnBjW޲Z~+$CMP꛼cwQnrÓ-Uƞݓ :ydkHmfDδRfdD'[BJfV#㍀܍^ߚgE~LugcGuU,)eϖH;Du3ɜ6vPtu,δc~:?rX.{l `7qho&<7*`>g [7rIffGǐݶO31y#^Ku<+G |PJX06仰-ktrjY?[F4ٗYma4y)Tډe<[(F侪P#1zeLovʙkO-lnΡd 뜡UaU228𷬷Lxɚ'5Lm?7m&Fe| {2 H܅;tlmU^<\>#4ݡd?*fA yF*tnh%,e9@{5'7}8#e~b;22FTH}]0褻[úf H⾤<M~+nG1Edmx{X!ltRvP,Q26<ǝwWزD\[=k-kI6 "w^C]#AccfI̵oCz+<W`2i NGX,Wt-UJwv`NwZNLbGo°6a Um$3<r/nt. rY/+߬l(0YwN[H\˲,>'G\d˵3[P˽r̺2w<~YsLq9'06WSS5e u/{[nNxfEF i<죗oG|_-G|Un\;AW{|18k9ǧ'L=  .u lZ0}6p\%y>YJiGR;4Sq BC^1o /KBd9-u?iz6M=J)!ẹsOyI'kN.~+g] 6Z$kwyGg ֶLW)rޭ|'OouQ7 Ϫ3ˎ82yKp9z\TF^W^Obk(׉)]$%Qh畫bʳʺQO$ooƁKW+;,+5#jXG4z/s̹V-꣰H]rn[8$fxJdyAϛ^lJ[o˵*V96!~?U9m?Y-%Z#Ծ7[LW?) HT%-*g>G 8YE+-z+"o\ߍS9 :`@Q>?#l?ʿ}bqۘȺFYvao-n~3s3h[l.ܮYsn~0)Y/C?iթ7J*Z'FK_ێ.'deA|` _^ke;˚2Z~|X mوK{6í /Vtve?G]dc*O~*CV҆bPj͖.-8kwd3 @K[V.ezQ*h1L2fKaul |T2q X**a #.U>)VYLYAEKeC >7'zB-+}K\ | ȲNhe0ywx]qxĬ k>31Ӽ['l><"7ݼƮQu>5[ n^Ɂ yedy;x?r0|& 1fZ}Rc{x-˫0J))d/!>ʊH#sve√=gc hѵaQPT *LK2vW䌦c\UckMA3@-)6w(~ p+:M] N1pYl©vN2bk7/uEW!d&5_ܴg 0>(so.BZcimr]l|q989Qf~vFd{=k*Mlb D`< 0aumu1t6"볭{=`z-UaږM>G]څ<]ĿRսHd^II/D6j9Z43=xZ|ricS 2>j7v҇i39FS>)WՒɻk\E}^o.&j Ngshbq sY.qb{֐S evV\ӖڇJfTT0h+ck[v4^ $j=K-neKwh"#咾1=ڧ:ݼL0VZDZhɐۚZIk`{LF7ԕ)xN0->{T6ˣY`8+&_ojuT] so崣d(պ,_ w)Oϩ?F`lv2]IPX%^Ys5uyqYdx/ c7mdݓV pZ>?b ca9tYc US;Y3uU|߬#7wyyKLK(M zaHbš|03!ZR<ܯӈٵL㽏WɈOMCO%a9IxdEl73Y..UMl Li,m-M3ecd5/'%d-LUHgtf.{;R ,͡p694S]SWP=7wv36>uv)U)v{o⫩6]rNc|,zH^dfM5RMX-ҳKYLBlxrͺ +V *{lT.ߴ6/%Vkc i)3aq/?jÊSK}UTsZD/Zb.m&bu g6C -ޭwV~s^bO-&F)a*긥u\UN^}Y'E3~H[ vn:)(ٳ>آFmIQE>"b\ީS7?gʩ?j"X$IfħX먟WYʹ9s}MCyQ_|ΐYel,SJ٣< c<1pTd55P{ـ^-euH[Ѻ ]WfmJ0gtD1\F{{ᘩdӷk0tp~^ OUY~n^7eCɶS9]m7~ҙʬԾ]p|?"b9G^Yݨ"~SkOmX[x.%q#5%g:-#4dt-7kIܖ񌲈k;nfDƝ5T?-@L@Yvww)K٪DC {cZpwV{6Ѱ*0؄,~g`9#eh }n+$Ś?e=K)G^񷊊ۤ,#m1.,Ǫt3Xou!<3mEDtt+EdlXUwa%P<#zq7WM˱},mw{uVQTsN; <ěUyl홗oH>՛V||0 o46l:=?Es2ev^V{U.*_?7-yhPaE= 5jfJL XI{QK tfZII䇑16VղH+_з[R~-=Z︕oamu.N0`N4n bd%6QbU6>_椴fՑ44Ġ[dlySmUY;4o^t]w٪}+ 5<|g(OjMc=g{Ӑks6T=TyJzI{M[_:xjΘ>!\'5l"of0( B&27k@tF~S)M=03[M<~[|!rƸx<kiͮusqMo9a:o!K$)fZA=k G,'JHŵn6됸uA"GJXAxM3Y1vmcxcǏ2ܵDw9^wS=5-u2{Ooz?8zausP3X(l܉COvmaVg5.@ru픕"M4sn~A%i;DPsm.S٭i&wYvyKS :e>l߬LV%Ka$ g3, c{5#04C lw;Uy9&SpSwe\/>Cdx?(:GG͜y#oRl89Tß{dJGlƳhZo3Cc6 ]mVqK,dDZ/5c䥷;oSUg36,?F|u͓Ay*k]`Q%USFhdU0U)~UV/^q٠v~]Ł}ʒ*2/K.Q?E}[AwY.ܞ1R6ʬCxo;wq oWf幍 Q>6tg79[JAsz uT p=D|=$qĥ3 1 7W4lNZ(7"[l(XiwIa'7g: H}lt94DwjẎu3OR mܠ} ԯ-վ f<ir@-4Y7P7+ R>h@zv!u`BNT FniP@p: 5@ 66 PsKL)]xQa$p.iռdei{nQ Y F]Z"8CKEmj@\yI-;5LeLH$1pU{/W#ə7ԏ9T@Y]|ڇ[3mro^z'@ )6D 3GڎG|[wSvGj{JIkqTx:YN[5* o襾Vs:߲zR2g ežnٙT/uTSA*۹My岚iv^Ƥ209(?(ѭ)܀9![ mN b>r[rl)KMZ;+/h"-A`%э#Ҽ?%n{do_kvXܷRo裟&J@x5 ˛y'nPi%/}8fD,Dָ \Ru!<07G7ƄQKnpBk6o8پk Lݺ GUI(gVp>ѽv6߽ z@`ә>CJ6RÎ7UuVwRrn.3y@sqeoݷZuQ6n.@nr+~;ҿka]K.t-16mMvcZٜ:+̉9i.wnMcsGګҿSc `;u>ks-ukR~(m$eoXx)5Vk~8oj5RW7[؉T]IFK 80.@L/?4rat8厔Nl5$c܍Fj1j:5HL،҉*dxq<ݧzVul3~ = Zhʼn~*6- ]Yuhh଻{$Yb|Fqk {4I&sZZ! qV8dy'UqΔfO6sy/eA#7p7ۢ$K@˫@\67d }[tIuy~RUd?9R@fQqukA@O,0$W:]-2\>̟EJ\rlw L(%o~U{]'=koPR;2s5ũ~;5=YLü\'I>{NR=d<~,۷wjRȳXOjb9@sǃm6ͣoUs7Vv@3@NúwVH{Snm] i@:-L˾ߗXNnmkA]M=+zֲ$. eaOpY Y$7;@ Va2SK#k8Xx~rߴpZZbHvq8GIg$Jx,xu@_؁j3L j>Թ.9 ;T@cn {eub0G,7@nqMm"h<.[r#;P!,)[0$%y v @'ܳx so9MnhzR ;8yB}]PSpjrN-93ߛs,%]t"ݶtWbÚf0޲$HXc .˵.^LuJ5tdum{GSk;Aී(K7Iuϱ%C@mj};߶ɉmU iv{$Ay5?wX.̮ R>1 7t?hA.[knFGƴEotmVrY؂kgor>vPs< l둘Öǻ oDꗃ]Zzu*`f^Flm8 尲c贎wjFR_;ZdJƊ`ƴ -:i>]Kcmz8zhRR49~ު{q*iA,7zUJHCkrۡM;׭ =nsGFf6״F۶{c+Z3F{l"BPi۔ѺܨNf߳ؕп6\5df |߬@3{T/w7W9᭸d}^\vGڐoƠpsmnAuSGM_Udw{CG4 dWu}^{܁_Oq9gnvo#@,'wTX2eͪ } s=#u㸁`G'hכRkn ]`j>rڝK\koH{wP6_9f=K`O r;%I#h~ |m@{ANwN [l#\܆ڏ@ ZT%QW[tnx!ydw<%wT5g`kz W~.pҲ9/rڨ8صj.;R䷨ n<5}O-Svn)RF rHG kPyw vQD̠vh) mx3F\s)bB&ۭ☱ߚo(0${ʙ5}mlf$q,w saןYTI;yVPB36@;Q뱹!~O[=&亙 0>\lM7lxꁘ!޼M_7f<#ڔ ->hmoD6Ge {fujt;5$|Nwb`g?+CW1w26pŵrrڊW6W꣕ǩӤ7\̤r85(ihWDzm3m2YP`&H{~C7Ilb7۫d:f&-`9v+235_U9eE!`ͤ;',dӱnmnih{DfO~iD.;QwÜFu>/\f՚&9Kho0کbrC߭dHxv^^Lv5.@km6~d!Ɍ@2FZGcM!}QԻ>mE٨Psٷǂ'#d>[ q(гtdfb띦ص;#kKn^ѥg)#q[jA{y+ 2fsw\vD2G`ru,ءZ #8>c.VonݚYVkHP{{ctu=,uY.YOݦf/(^O4S,sOqG#2]kAY~{;9 A+Ys ҹ'5,&n% f XfWn()~@ў)ܫvMQF s@&r$2滛ǒh_c]Ϳ0|n@6+6eU38={o`~ %9H6Lk@2Vܜ0ycne@Ɠ)=v{0{ڠ;5b}yZc{xq@3e>9aG! m%!^жs( Pi }c,eV˕aN%kڎm%7>ySPhZ\-ԋ-kw5+ ׏ꐘ2RYj7)#Ꝭ>vY@$uP>S6+9}TH5 Skm:)\MIݴQwĔI^'VvhoQeM9eYxv BI )<-[޻Hy6{8 J11lnVI˛W[$|Lcs!/u[<jP7$sfmr sO۾qH_w (;G %N՞u;\goɼ5JVoNuڹ=g]'~fe'1 v`6m̦33G[2S+ A*GKuahnyqU?}Mnnkp5R7Zqvu,pD4B.AAv?rP1 p 59x!blR+eߔH5􅕙zB6ls{r{\y kfsvNuFM$jCP%{Tɡu۪ %ɚ3`(<ެu3BFe E wߴp2euN|XLjO%Kf'Op8hF`!p-7v,1.r:~Cݧ 4D㩩臵ǩkqW+CC2j[1F3X?IW<{N]|`lݑ:ȫ`?H/s\f(vL38)`ضGw9mGkyuܤK\gnCPZ`gn!|~.# h5g2cŮ5V _W9!v+ϲ~PxsVZL Gii;H4)/ˑe;IݛomN kn&%揄M7񳮟W{\k+Yk|R 7j sfd۞Ԣ6Iye#ȡ/aٕiq֗oB6׹ 5e!7R zηhj'd~|:Gcbk^ c1A_שּׁ=4_'wݚE&1.Agav-0.9.1/themes/yisus2/background_big.jpg000066400000000000000000001274151423175241600205020ustar00rootroot00000000000000JFIFHHCreated with The GIMPC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222"R !1"AQaq2B#Rbr3C$4Scs%DT5dt&(!1AQa"q2#B ?=ff69n& Ӿ Jn#8r|־V<^8٧[5pN+"l&fAy 6 Ѻus>FV,lm;@^K_?qphp 4yZv;C ZƼOrǶ;#8M+r2HE[ `maKFH+}.[#s8dnčHե7"w{/I<l`$Ej#aS\؋y.rcR 8qgRbfyoz x'6\OQp΅pf=hV|+BJ['Qf %uNp\76\<X)K i!]q gSݐ53͏etN2́nfJd1yXyXښ^GbS^n/#y"ޘt)8TΓ,Iq4pWaxkՉ`ImL%tq(0qF6-ꮂG<[>8/l(7%~0q^kY#;b˧Ke{I'ɟǃ`tle;2X33#;SUp8f^>+c(Yk<U4s\ޫO3. Y,2Z {vQlp tExylv;L5ܻ+ /񻓘.nW1HO];"FL9ru|#e|׺68Xcy+xɩҹRG_Gx,&rw+ˌy^4[$BWs ftytÅAs4c jn;J"\d ;;=Á=z7]OGD\#r]xz~i'|9zs\J6/H oH<[6>lq6ﭿ5\o;%דzǽ[ϑ,D0ٍg4_UdRs}i)&;!sX|-If:m_pgPE$[FV}xVn ٘ p8rZ:\G<ήy^E?K /S;'*8p6AphWlp\~#qs%lPKG3Wf_xS̋Ӑgͽ?c')aq[}W5N{ ]&/GxX=Onir>2XRq4|VQ 0%~S }k,8bkl4}332@~ SrNkO`Zr}&st81}~O lm x6փ#K̮+qckH|5Ӟc 7Ljo̅\+%$sEPm'eh,ǺGў)_*e. 3s8f\Ӷ(w~+}yEw⎰a/k 87-sY"EvדqbA 9tp8tyX^vOBH͕]zg7pWşr#ml2'̗Nk |;q 8Def?Msp|6 z?xg= EyO|[9-cHcq^ܘ5IDtmm޽+Ys'\nžhxK[Σt ۑ`KicW 7oXZΐO;7v>Y<<̈́:~1YciF@o:h身}klp#ixkqjQt4gXɯ?&iXًlŝ̞kO;izy~ vn(0A+d2àc_ S[׏߶꼸cS4kZ?ِ}aޯCr&h'-x_xI˲8x#pm^ȭ.%k`>~Ky8O|B)rK 4}G-/l8f<7= vO0VA{ r:38l?fSwwȴWMz)r|y|-Ol~%m;x(X$Ç!رI6.#>]0w"31%$nlˊfM'[#!WZg\ "G?S^rܓSHlnJzſU E#v 7{f`d|7kɘOZIWRڎ[cx,mwd֥(( ;h(y"hڅ¯4w!N `sްu;slX`dD״.I~|j&+< rI3i,'K[3>p8̎;%x@ d+Txcra{oxW;Ŝ_яHGI_/0L2FzAu=<$N-\&S\A 07ߗd~ Ή1Hoo%M蛎btw=NSr]Ki9)te g8Ψm[&a#kxFF7ᘹpMktwp>?Des-dGm!D-۾գCtܓh0$`[lWkO8,0ܹệB >[ .S38HGG$eea}(c-L)çC:2"a&:Y_H.ߢO`| ,^O.-"Of+𼏓6K hifxg/3eqq{hP g?k9XN\B\ȑ..w-Khbl6;QoXIq[RlmOŭ_Gx7 wDept\74?xKѵ!@\xWVq^!7_^n)<.1ۍ?t\rIq%0{n)~vg~[qqNnD1 Z?Gՙ`f>Nq̝/?[j)< pLeς(aL`^altKK0ɖ^"Ǘڌ#aSziь7 ͊ANd?.;*^ఞ rg'f6[C 1A4؍ֿ'01 v~%,xLcCxH8N8?3׉?gKOȗ"C]g<fik@Yiў` C#;D/H zA\<\yѼSܣӘ4jXBF١nR݁Iq/W_/V~3+!: VLbCBTAB)MbDT+H O4IHPPJj(%ET*(JRJJ%D$M)O4MD%*(J* FT)<A,obn6 w yr2E7n3?C2"hpcъ k_^'kq䋂7ƼG#~Q O+%x>^T0H渶Iv<σpWg ^X][Ge3;=wRdx8P%crϗ'WTsN=oK9rgG41q򱤻vD yt^`EͭGxC!5e+tYH`Wk 1Uj=%%²tdx3ZwGU0sΌ-ð] AR q#\:~OsɩܕRҔ #E (aTOM Ch+4)4 ]P35GY}ZZ.9^3MFLDkQpg2ße!%Bmo씳zv|E?v+=,Ȗ{n=/+4_Uw\q.h!>t S+g$-0J PDJ䐦@T;(wA* )~|O-!wW[- =^`4wfGA2LQ6gl1F=Z(odnGǖ. {Eiw-^tZDhyU+K ˷եy:-w^8~ yMo cb>;7Š/b#Jl8\Znky%4f;0444j N]gLK Fi:4Zv|*rS Bhᐿc-L|\Hbʎg R:l`w _^׫O٦e3 |D."ܚgq l ciqa>4Ǒtw3O|әp(vC7TN,N!q07:?v9<9j|ϒXFd¼[{.< i0zYO eZƷlNyy\MxoszpytYwz$q5@{Fרa6<-nr13NAk(xvxִzbό,~4r5V okpٌ_m` !Cbw;Ekzn~HΙwpΑf=lZ| $]8vvkd;@iW<:QS`ӨeF`▸a- uCc;'zA>[,LQdNs7f89ҵb279c6.wGIJdșɶtQ{Os0Ë!Fv/VrK3 :>OQOI^~  ?-L! cd6[3z\{ƃZ&X0DP#EzXA-l6k]/S84m&Vi>{LkZSumY[T *5`)|g: yiS0M-m&&(2KBy5wȍ]!1ޓdnHYa]W@W=ڽ䖪3ucXUe_Y4{5R$=Y~VUJ3a)"3KiiKSZд5`qNK+e8SJBV%)I Ԥ !XWEu+C+ V]uGqً_zw+5e沚Ѧ^2"bn_ձw6n/ -lAhQ lyf?,cgy?I۽gI^8^C]4-mv[DbtI *s664%?Ww`A[-wx{y)X)L7$m{,d.,n6[!5+HCO4s->Q ou]s֭ 5EӮd3= di'. UWk ot.f5x_;:7ڭSD65~3ǐS 8 r/KDpͻmv~3:MtƗ򲻶6ozan'ST=`cjXc:@9&A0UKDj:;xEgֽаՅ&H[7T楆..]`Ƒ/Eu2ݫOE!'me6Σ AΣZU#*WTyOgX+s3{ T֧ͧq-6tQ֫RUycYRʘjוUmp %i*= B%/z%))IB(ږ- T=M ZgLKj*Z y Z yrUDAP"D HQ45+WSRZYn&q HWLViYHRjXNҝja;HV(uO4&QP*UA?id.0xe;.\A?/SEܳ'/aH JRuL% Fɻ)"ҴHRP`Q] )Q9Q4Ǡ@aq|7gb G+4H@"ůfxOL8fd\V^59@VMu <*N+\d3ַTob;8x[pn$v($7֖ ͐nљ.u \|2\.n,of7mJ@gk$FL%G&pך7guڰ+=`dL Ω@NҐ&Yƪ+z4oVښ.&)7O7{qNx+o5[$6ǒKp8t8f.%n ~~dF99[vWlĄ 廇xu;E @[z)Yfz:GGq^{K?L|0W5<*NbHO;Ox ^ڿg6F/T)x{Pc-G=;|Ӿ' VdODC~т0 Wexn "` ,5`v/Qq)"\4^\w>p;KZG[edcKkot -B}k>DP)r.V@R5jMb/,iyݪqݭUMln^N˝hXvkRgHXɑ˜8ڗ"F*vDe1aeY|U$-KZSU$JkU5`xi*SU!HTkCZ%SMj6)JZ08n(ZKP-TBPQVP(ZTD4t֮iMm7#e[N@X9"@j`)GHCjLH w4cH:w6 [ͣQ-fW=˃FLA!v.[Sb({-J^`oU'@I+ȧ>ln!VS!(jk5k(_661’Cs-6os2)k$\胴's]ub-.,v_O98lL%Y{KͿK䜞rfdW?K90xDvHZu9fk*1רPcOjg { 87*[ow؏JEi_Ƣn'RǗ6k.eU.CX۽GR9cQ+Yot`m7,g9]`hys*W䎘/6FL<~*Uj Rٲ9Jr-vHk+_}Wr|aERqL[aH^B5bBҔTXJRRy-5DYԵZ5RR!jZB- IjZ{RdjԴ< hk bQbZ:KJRSOh-KAEA-Ej eMܕDQ2AEQV*# o>9+>J=N^l*\CyR`q5f'$j_uhnW F{K'5+n݌jལҖ' xKc{?AF w9-\t=s>HnHN9y.9Ù3CU,k@i䜋lo|.sXZ^E|{O跌]oevRqz/(e<P渖9pI[ 7rNud bq8ܱJJ dʛB֤@ȩ-k YBMiu^Bѓ겡)-D imE$'t*h()j U dQE`(y%TCE(`(Q (""IQ)KjZ(Z-E`T)梇(R)OJRiP)4(КR(E)I8T q'r\By溰AktrUNDW=SW';GX[ڥRQA)JK{h! w(FAXIT-(B0)EC GkKvR~K_K_Rw9ڔ-#'Uؕ³:6o \2^NJyYL/n_NѸq?IR-y$9aבK]M3ZnqKY.p͹Xm8fNIKWVBD4jIKce @lwZDx7tl>ZD8?AVyGޗܽ3g%p ^d@lxIUk|VI#Fq`vZK8pA"JXޚ5.Yc.f\̇}ۍmL5W)opQfp韋<L̐5r޲ޅ_>CI7{Ο`ud-跺qSaQMkiDDTM0EMLQ4KޙD eW JReL%)IM0'J`R B*&ZR(aiJLy%M0RQ5E* UT)jZ%R>*Z ȵж!ix)#ΡW+nu5+w2ߢ_zK G)(i8uy;>OY::J1[+sy#q~~t:5=y|ihI>qYln%8Xb3~e`ҙۋ0f >n|=j2%/ZYh63cj)ڲGjS|T,A@Q;%WfLt_%EzKtwڢao%y@ȫ)k#>MnzZBy6ԥ<3u-PQTGdE-]1KjZQ-j:vP +1nϴ;yn7ꋮCu?ud+g]][fTG~SIQ-W荅PSGZwZ"y1(Z Rx,CX8 YftY%|T9M&^EVڝA'R KP6r " (&Oy nM_R]ArYSQ4& m0,vGF;To cşEU2^ :.>=x oW^/I& ޽]C[Ä VgU~ѼJ0}B?ZKcISN\z/!nMZΕa{_D;;̯U콃|uGEE%tEQ;JQ((4REQAEJM\)4QRNOJuVzRN$lNʉʋZ͊'(&m]L R% M1)JPL+M0)EN;IG47*^ DrORZ$ 2:f%BQ%kLwJ%BJԴ"5JU6>RԴ$(D0((((iQ2k8 (}Ցr }vdoP>|q.OBzwv?v jwΖ&oVC}豸#kSeBLM Rа B --n*ePR6D$ zuG_٩:mͺyG"( C鄽;w;p~k?*,hldH38+^9WLjĜ,voCþ웇,ac"qRz^5ޮ9dc.-hh ̔ҪZjs-7 nKAKy EC%t; lَb{k3\rcc*xuym?^v#tC; 0ME9)$fgאֵ%`v[_GqE)Qg7{wD"32f\b5#̆FaaO9&G5ߋǺBǚp#Lmm`漓#id*V/?\ ebAFH~|85 }N+YckM c/l2y$&lNX='vQdY-7bٱMvcۛ<s4y YkD7s&59=g|r"QY-~Gqox8GšJMzaѠ<9@ fUW27yc>GPb?F1=d;L,21qugdyq1=q#/>s/(d˗L Q17ѠWu19j#YӁـ`w`|+97sLn 33rg54ݺe|)stVFkwJxÆ;m|aU_Ncq8`|O:7/}\L)ŶOjuj[~D١ߵ^r:+wͲm-/!RV蟣-Ģl-p#'%y]kǠoޢIҎ o_۬hYÊ0fZd,@#rv_M#J"ƃH w>K qN-%>xZnȖZM wa<|䙷0y&5JROA"2D_}*˘]A&[RqN0xg~\Z'QMk)JNg J*mZׁ}SVmNP\S y؀jb&=>|O'sp2\6ˡg<|ز~o߄?O-bI[+Syv}ts,6U-t,ߖS>?~3z1~$ڷ) 9h'< !õ8BN_%o=: #}_]0돵;~ `*L߀ ~ ח,[A! y~.djPX|C9'?$djJBH8cXy5 SjWSg`4FUcũ5'M,SWe^T'V;cHr} Ty)֟R G7[i+?_UO}(m3{u1'3f%{Uu ^>w*1a-WOjZMviMTԴ4֒'u-Y.bJ}jkHM!i5^Q\giV94L]Zה={}V8پˮC/5Ǐs\^v\Bqn<۟˶7UVCW< s wW5[=W8Vi@Zh2K *CҦuWl$p4$/6v(5ĒHItGwU\vlWv*kܒC7*z",+c3Ti%ߵ4d=GV_Va.$:K6=OX7VFL 8Us]!*]!kX7RnYCpv=ɣ˖, cٸpX(: Օm3vnt$22 5pljX솳`e [L.ൔK?7(7zg4W..6V ]-.&2 P<[i3%a$3fk b?X ,:4է߈e1q62"nw.cٱF#|E/.MB){7vCw7:xr7v[WW)sKW;2qQ9̂%<]&w~eg/^}Pؚ?=}c^]6^f8nXMBf8giuc2cKr_zu=t'$ b޺p^70$Gy>.dny䔴 4wGpYapP7*^6,K7'p9raGfq_-.^/g~P~Sd#6,XLJb]Yq,> .k|sW4z⭟1,x6iz^?ºCŸ$1֖ l(%2H-\}Wdf7 58s-<J̜8XcuL tx/q$uٱ9@'l̝,5o~.(1`\?[||C1E&_=#dk}Jc pƇ15qqȚ DqH7Z8:D&KMM'r~+Fd'}`&-+pIAvn 1\I!0َŋ\ˉz+S;,}%P=QW^m?5cA i3K}oפT<ÓLTX#9qS?:m#ݥ~[3};)Oksrt~60?wMA/xX~) \hl^,.orɒ^F~kBW)Mn02k!/H5db󎀝Ե*WQ#!lb˃ |DRgeZRwJugU*̔/V0uj%楒3IR%ԦWZ-KZеUieB%Mj=Z%KVCBVy--RM#$`j1̂PJ òhZҺFVQ5q;!i5_;hҚvk@ZiMi-* i-KCOB]hO RG¦ՌuZ(m}UDI\CMq.8U+_o?A R{-(?8Q~4겡ES|Ui+m-&o{[9zQ5v5ZP~;24{@Y\+$$rq!szj`>ȓG\8r@{@~ ՜#ݤ^Uutxoʕuv?'$;Gˀi8mhY>1&gKZPf89J` bѨl;8w h!So8.Zg5-fTA!#Wp[J-ʓivC}erQXV҇VD-t.;#Mߕ)c'HrL]ֱŰep~4ڳL\yvZ=c Zu3GI5AW)$01%cy"hc=i-V43\:6H?d3 PbkSP?]rnU%,>-4~H5r_$s;U'fDu1;O<L2i zw{%n#{c=jI` :=|U삱٥x:%x.{V%K:>f|K^T'N[QcaH\ ۿpi] 9,NºY.ۓ)zIg.<+UjNZoIce0YI8Y]V?pFNI/hnE8J$w9H d3yONtpuj@u0~ tdGW0kPFdlVÇ!KyiX+˛%4P޶)qu` ].#lfR^ˮ!$nN$7?'`?ˋ8K\J\>Opzxp_l@Tp^ބtX2!j.ms7"R?xYnngTxAf8DAk@Όph/f6Os_FM͗;c$q˿f h#7 ?`Æߏß sˣ%y84%Q> #O,W&_m7%4-Ku0c諩`K<8uVxXZ彞k6cr'?q,%VxsrW+@Y~f)<(L+uA]d3VDCo}J=.|hinkiddza>4g n51^P}LM_UVwOcaiaOr}л;5oEG=GU`w |[So^7|lП]R6԰}6)55SxZK j(ΐBH6055|l;ԲG@ ;?#c/p 1ҷMo:ђDׇ}hϞeiL[F(/7N v¿ZIl tynCM<v[ZAE~X.)FEVV!w!5* N?J若g;GJ.jkw桬f;c }+[N ǔq{ꬎ'̙S /(1nZ 9Ni,k\;Z!kP<{OoF?,+3&9· S̸`p`nq. ?]<M7λJ26@nwE%,m.Nn4|([8#Yx[F+&Yg'# oe_ϣ3g#X„~O2Q2 S4~5,Lll65΢s)߼)ېD%z8h݃؟M_k,yX +60w'Zk>y=:\7g`ng ,lǍ#Ot#%$1ښ A4}Yes: Ty.:eX9'Ag[K'bLݬq󵇓Z/~#~q!Ɂ,|N\zb5gX.ueeM#I5_W[[lI[Vd YiwAwr0fO]|^>kзk,u6MFRdqi^^slhZ[fmj oEg3ZQ9\k^DnkZvcvz?94 +E_\jF+XƑÃ5aVLgT"(9R6Q|.9Y 6as9#wlc %mIHJ% DAXFSfWN?O+k/+S(dZ#>E 䑔z} *-6K+NLi8h'5E(J[LþiRy|C4PR;jXvn,(I%ANݯԱ<*D߬'sd-bay6P`rjZB5]< R! WL.B+{;!xج6wYQw2 ƇKwws<ыoB6dgŨQș-&..Ąhܮ ?gXzF7 uxy `iFü'#ϸ<FX>JJuo{>kd1]ڒ|#&a`׸[\]!|,{n?V.DcO4zlG\P?iqb}?nDo K FCtd+)բl|XcGq;O(.i:QWNe؜d?!dk4 Uz#Ϛg_W61}n`L:?fHoh>H76;4de=axz)J2 ZQέ6"cs\xnUv [1yd:W.Cq0_V˕k/l䯏|V\fƏl̋5epJHTl⽡g!lŸOY4ݮd1ȳ?(SzZCYya[JA K;j%I#ֽi;YWÅwyrB$"Ȝ $rgA{Gy+'k9~Jg 0:8}-2LLc-VZIxU|peeŎzճ2$-u_hV$n]qRAj }usnOWudrb4>H&Ͽk*0]vmn$Pq۠덎y7Bֲ ȳֿ8U0[F5}ꆍUW Ԣ6?&odIOEݔ`[N6<}NmYm,.oo)K±{Kfp!]&3xa{dn.7`:W6~j\jvq<+nY]Mu=z6+:V dNy,HtCu!u5-%ݭi67ݖqC\Z|EǗͣTY953>J ()<}-ܶ H4X/q ` 13\mw= ln?<]NC-S ~rn6# !˞M1:yɨ.1g vLؙ8ikqrY^s+Aҵ1&wJWøez=oM;5֞S8jv,W|6{1W囃O~3}"r:^Zڞ#9H`OuGidyM>N ~vPc!laOtD}Ls< A>/L̡!"J L{ntª]'_s`tv/~{_>J( ,<\J9%8hijxkf쌃Շ;~ cq]}NOd{I~q%s23{d|78ÂDNRqp;kedmz.s&Y[Lb7D{ڻg ibisE ~^?n;ct/n} iTysklANMdzK#\ܘ_CSw"\^!XdH=kо_/uRqLrڽ+r];pc@{3Zn 2C`k$AY2^6 WIJjz~Ë.3WH wU ߖadD+fjx#֢b s቟E}䰲Xaqo#k.kߊʯ:\M`f6+\̉۝ qq]dcAx5i8y0~fT9;30Q1e*ݛҎM;/_V<4rausYm\FU(]3 Qu*BKck ud9O$G[ js+DZLcE;OwiZZs$yq[13 kdee/:{X]Yx&;qϊOGctt:N,s6Gdw_𝖊| o͇G rDÃ67(#qD pq *vnfy?&Q4EFԟ`t3׸J:A6 'mW9_گXC2LLa4v=Υt_2HM{. -tIm>#eVikK+LŖ;)$E-/&Fn#ç>ѮJR|'>P`qlcIgc{jri~~*>ΊBV8fl|QJh y&." ͘E68lk!G5 K ]Vi ]'|w4$c1([\S5T .;bxBNS鼭CgC3Ev %-w|3`73_VuHLX cFL.YC~i+kwc)qryru{!BCk%IghpCyG~Mk8TK<5)8NlaC6{N?%szeG'տ+/x(bd:Iˠd[e򵟮O'ȯWh|8.O9k# Z"e}taFWY l2a|:yzGXyF@9V[zJ&GcI #Ky+v*O?q<@Eߔtq?x'.b?z% O5_ⳗq~ v4| #.~6GtZOf? 4\쟞 y{>l጗K$uʯ# 8zV:Jn##x{" 0[_oPqqYiA LkNNm R49jk18A#uu`vV<3^i{mj,ւWU~/#ޔOU rڐ]:)Ҭ5{VAgXҝgQ*XY}5(AN(.tQw1ՉZr;X2^X]~-T~M_#adN?H*kYPpuw$Ӱla(0$W <-P}]XH kbIcc r-w z>5c8~ Ms]$EFDEx$5a|9_ 07.wqp,q K^֧y.kYƈ!gٌ?幄EhNYO]\g ٿ'kK.okw&ೡล.Dg?>Cr:`/F|Fc۸Y Xm oZ9d@P!I116)| é#K#ijK0;k VE5[RuR@;rU9ALYe{Nw(|xbS f)>x.&-,I 7PHG-K[q20Y9nZ.l{]x.oodT)2,m8sZp8wOϹWQ8\JxSC0Hu)ENǒS$n2?&aK}$?]AS_ka"tY]~,C dmXd2~[^vQcFF]6P1f_6V𵧺 ("paUei+-;ܥն<5?6"^1odq4;bF42+Sk:학8gc)`ehhVxV3,\H'mBHD&.ճNcojj9$RW鲛qooj[+ps'*<1nGܬ112WѐCzP |9\𜤷m6~K?dc6g!:G~6>`l2!Ӓo浙.\\zYc-Y ~^IY}aJz ~e"!MVǎHiڕ-~rA}XVsRZ1esCn9Iw֏e&\>nbۀP#02,?ʭUÜ|c+|[~SF!&Ί!~+Yy)9>5mMqˎř!{MGkg>Y?04e(#.1 Z̊k;^)ʇEfli ~-'lLGևeʗfh^]QŁ^]gcMJri&6-kzMțyuj/یf:n[5 0 BOar3f dCIʝ#~3e jG6Qpm=[)9Լcyw.iݑ]L"c _ hs =DxV0c_hS# b.8χg7!FX^CHTq֟1d)9Ysdž4!H^Y Xq![b)#_K)4ƱA4{2,ґMdD>L0(BabC|Mj|Kaw*Gƨ1>+ǖ'Hx1uOq7]Nr=z99i{}tN;:hw{4ŏaZ;t؀ [E5Ox#[ՒFN\m+{nI۸6ّi7~k?ךH1D9;,; P_VZ c-k],JF);pC}Qrx>P?U4Uo]3du޷*6'ժצ@>е[z7|g>ߤW, AuP/Ƒw)_jvY`SwH=`_5_JN_[R>p=+Ă\Np2R=ApSը p!Hn$L12JB|P^J!3?7$z Q;oX4g: T}3Z1{O'E&ʝ[*qZp1"Q~IǷI:G>G7, a$& Êb?&}jUc GF]h#{J9ZE ޤᢨ5ߍ(Xlu@6H1T="kcM[)IH0%iyr<f[A  E8gh*"d+X>Νߒ+a^h#VScX{0͡S$'T&MOV+3n3m}Hm `IcwgZdջaڃ?Pp,Knc&z!Vwպ7C 1-goǷYD 2 W҈>@ik@||%dYwY?+dQf6ORQlD 'ttw!J5擫:i(;brd>.P[(hv)X.WhJ#j|m #S4~(}@ƀIP  k}GA< ֒&}#c6jY>.@h.b6u+<dZid ;xڃWQ(D!w;5i.ڍ|FTW@>?Ag EZE]d|-W;# lOxDeaﳿj QGfc8EVI.!E puGU'S?3{ϓp"=B$Yh7ix(D߼]mVjDF|@eإ#xyx'mYDd,Iムk`p/n砳C6Ǵa].w72fN Xs!sl˘.4K"D|R_Bo?GF"ڱz4o7$'Kg̴$U^dUkq&: Mm`Fo͖Wev-f*lܓe iDeaOUI3 ";|Ai@H%$?@5dApõΛRCb.票> Hgd?'OvO3 nO'&KL }v2AvƔ߻IXyi=1^NAwp2,4z2xD3,̏$ڕi16r .D4m!- ˈJMEU;"ekA3>?%Z o}[ I)S?pk"A o#9+ T[ts*x"$U7ګD?`"=VbŠ6RsBDLyT@[cvE0?-଻uR ih>(K}&jPAD`{?Z%:APNp>MD±cc6QӿPlh(8V}߉Ny 'ԚE4s-(soXd!RM@4;߅]B;T@&_H@ejE T-5Q;:p$z uQ@_'۫ {$}Ժ`WKR(榲$P&A)A%}u r_(_A(Bb/~ EA{Ȯˏ:o#BőO= j@Zl\TC| EWji@HGtPP =⧺('-˚#W' wPAuF<ڥhp!5uȟE5e.U@5@u֗S*Ttqcնۑ5ng>?40oL'i߂i<Tipp+ProT4X"yrf_Z9MkW(I4˨A wZI~ #7Po4 ;IcX,v@:| K'2P減hVBv͝)F-ѿKsǡ♑Hwc`&ԋ4Pst{~Q _vMPOM_}m .o8KGgn)VN`*r4[} u*Ϫ z=0}ojGGw Rm2~nIgUjhyԍXD51CRiEo"ҒoN-<җ0P޾tjSHP?gҐgi:\.--{.7e)yCи(b ʗCuwBZwT>4tu 6}|hw ([-H~?j, ^꜔9*vq/41|vJ)D ؿ{ /P٭!UR,Ҏٿ44>*6o3A(:Q%7w@}ehcg%{@D-D ]ި8Ѱ֏Qj[(_ki23t֑rvzvPXcH@sҗrHܝvk`J-v+n'rD=M"[=\^G bIy-GW5]s޼;6yj"h ̅y4.5 /%x,<~?t0)(m;!wcu`cު)PjT|^GNP5!,5/J.O?.gzPڒv#mݷ@_h ?y0sChFP ړ L\cB,Uۮbn4-  ׼RX!--6͏("Hy}oSuQc@^zҁQ6ԃAw&udk6GohPjm<S7)umz;w%_X $u'ĠWv{K^u1:]r`Si K{Z#vO ]ހo;j{um ".۬e5{_Tݪ1;Whع6R߿@X9LִgRF^m}@OgIha@qhJzFͨP'geCOzQwB7jl!6}Z6sG wZ Ynɀq>Я$ : nzͩR6AܗzKΓRMZ#g҆~Z<^O GDAvu%MXky1ؐcLH,s)cV 0 "vE6@w #q(JZñJ [~n(Zu5W pjh)v>i-ɭ>Ih˽Rͤ" ݮH!4@. K,zotS~m+E<d~ȯ6ֱaAoٶMޝ㿂bppÒrx!mgC[M c!LhW[%pGy5P=Zf;<v4<j\=ȚM5R]LqZmPWGn\NѾjeGoy(W6hRDn?D \OW{A(,NίugH킗~H6/?* Ғ$m6{C:Dm}Ps :hGGP; hT~LO%s DiiK fհsu[A ^^ AT@.c#lR`Z{*HwVӏ"~ b M$})ظ| ndR #H1jg8@vS+vt@U=99{I7Nih%~ [OG/CZl {`O>sTcDVeAxk s]UCEA?e3 ~(;'K{2mSPq: q@,|HEt}Ćrt }DZCo km A.mx `S~- 9;uu(.<=R =f$ <ܡn襰.>H s$۳mCSW䀸C]*usj#[HрSCf ; wXEڻr#X7.C!i#Ȩl5߼=FkSg&,bu a֚ZY;[hWfӸ(n5sV>:R֛{|$E:;24i老@$i!j-6V=IF<];Mf,1ZvԂ5>!іM,;N/H=Meci5{@[m -j4{I{PM٢:`Bx)wUP߂ c¯Hq޾.Rwjh"GD4y6R=ɸqۚ<53d3xM;/?~ Q-+FR-Xեժ4zhp}KQ(wҬC#X7Av_̟XHk4ˤ|Zm^|X,bGA4O`|\5QVZ8}ZGeiCAO7㱙[ܘdvE5h r-MW m}?hAv+q͝/hN @jR^{l:Nꈄݕv:g4i'$"AUnC$U!?e5bՎ˂%7rGRo/&daOXiN4DwPoìu*M} NOkv) Tn?R,깈>%3dkhy #?@}sk@L .h/N-YUh My'hԁt~JAi"7HIV7k!eDu zwsjβ#Zg/QvE8F29nz^l~J^$@,r*YvŒW@= 3wA *5rGJ'j{$ `H$~F,n8"djA](ӫwGyu+mA]P8\4U6$AVE=zݳPAqjmJ֍Hj@WYa:i04z5(RH-=*gNy3zl4~J@-Nm*Ab@j"=&< :.;@~$٤؆Vo©7k>߳aE(.{ vޯPJ]D{- ݵs o'#ɩtF|VTXNh@|=4, AIZqNֹ4nu, D mj#sS0ѻjN5<s,03 k5&MN {6P9T,c(oy Z@qu2ݜG[}iuih$W,*z^hiX+Vgl6+o&kiW R~ͯKDֽy[Q4g%$Xc c?YM ۴A^G:u \rkN:o~iC*#V;CEVʮI@>`P;\|t@IC>ꄴ YDJ6mtkzH-&~/sdsI< ]g{~N[Vԇ}V99@[pye7c/i5Ki#p~aT1"D-&`o[}Wlvo2Չ>Cx(]쮚V5ha#1m{i/ȵXcytai`ܗhvdkPsdR4@v٥_2܁DlletҲyT_' {xiD Ԧ?REXw8R,`}G͈ꠍ|'`ɆW@Il9w DN{o  wsMN寗uLE<Nԥ[lhǫ9;O40ᾰQ[~) W 49fH=v@;CSōHT܍YMDZ{hMv>)[vtVeݤRov4%xv!1ݩ+XݮԀ4On=IPzT65۱ UӸ> HTطO_ \Yddi(iwNC_]SrmMh\w!M6-T;de-wm&4] y5y@_h- 9u2i#PCMgz9.aPcB n>:>\o&ëMxr ߑ(N݃Y^T$v]FS_iXTC޵"KKOc+i׷Рp6FIJiG2! >H,sJSX8Bo`Sdp>6J!6_)$쀈WD {. \[K_sԄMy48]"H#U`W\1sZ׊ݑ>Zd}C ]mhnaTu^j9ſ\Yl|4l5]a[G{.opnqx)N| ַWg1% VIUg5caF^-SV[]jZ7.>Z-&W2n .2gӱV cODM5h2v}qG 0oKrAs>䯢N^Ruwҁ&5lsqloeo8iwAƼignAmR82 8;l9~*֎LWk :7>ԠTA{(CNZXCA]MGM-h squVuaaV>> ^MHsE&c&,;̌s(WH*Po$ !ulPi}?t@N#A}kr&{Z)4i7ERufk%7ZIDhDZsc? 6l揺&e7@-I푕ڇvT6ϗw$bC!jx>A!g'WZ`AiJ5'ȚA wPRM q k"h͐}\Gٗekn֔lNQPԭNH+eȳNwr:ޣh9ܔ~lcsOf6{SցM Y G.[A>̖H?돖}A1P<\Lo{u=ɥ?d5A@X_FS\oK>z=d7'!Ik?$JAOu7[7- yЩlSV^hlceb7%(nq4:>!['7w*d]@.(Y5ۤiFڴ==W-vC [(°7&qf~rԽ{,Ԡ` ^(dt/ҘBUd׀48ێ1^[ɵl6jkZ~tϋj,ߝ=ejXi->Q'~ EѦ7["׏ )( rLh7( N=bMHXuvuϖc<@ɶ7AvO"M)M[T m6kR58Io)AѨIYkuwY8}sbh~'uYsw?!0` [xſkQQ$ַzHдBDHA^BiNgmo7jQ η9vtu|iIbo@n`M!Wr߾7oZ +!kd7^|wx_}C[n{ǕRWRO.G!vf jV ZXML'x<,O=>ow~+I>JYG #uӻE왦!>ʲB) u() 7kuV 6PZ5JAY_yG x~ƀ>ʹdʭanx>KKQ#6i+.vLǷt wek,q[hnĐ'bm ϸ R-'?J g7P+Eyps@uhH~JwN#q'C v&Ͷ lPG"_CE`'Omwj G(wqJ+5>ɶ4-7?my(`E>h`akUW=x(!GSDn,mnkvhl+i?r8Qz".4J@;.D4=ZoWom8DE(% ND:t7&*ms\yP 7E!E$j[]vOPz;r<Ȣ$aI \ȗAڪh䈧_Whع6~>,)KᲖfFA.?@_C&piMp,uP8e~T%=n$M>|ǦW gav-0.9.1/themes/yisus2/ball.png000066400000000000000000000142711423175241600164530ustar00rootroot00000000000000PNG  IHDRxڕbKGD pHYs }vHtIME  HFIDATxydWymgFJ6ZBB@ 9bl8&f [vX@2#( "qDdBhChY4ޫvq{ݭwΜz{xNbݲvFGшSKۡyd.w25 ֐XKn-y"!#QƸ?FW&&9󅦝d`A:Oò/fW](rN$)o> Nk5^~Y #{ysxRYQvJLx[ͯuЏ|+S݄XFL.jp}f6:TH[Rp5'͕RSJyI]CGPJ"qDo{>D X躡 4)kB H BIDRIJ*7E?~îJ$GGoO/R*ع{B;8 d})$ i%4HQ8BHICE4dĊZQ4ꗜJ!!gI~t)# _~7PGW_ߎV&MEah(U"YYV]Hw+ ARI;]~lPxԁW.Rغdn+4 =3) !`E!PB "WYX# -J)8"R[֮aVB9x C/2jč(pJG+oL) 62\oT[]Um,4)$8\ٛjt-gT\:x/Ǽf׎{~~f|!@ %s(Z~#z{zJrswbY8pna$RT)DJ)Q \< L)QC$pH)@ ޹@"q"c Bj)TTBZ8QܹZ\+ ^_{X PE1 dվ(x<΅g{a.I4aw9݊[= _9 \!@HР)r팯GE%W/ ~**JgCΏ=~^Wъjr\ ~p0.u*RR!ekȭ8Td9mB ˸/܊"V0wg֟sˬz֌}HVrWH捜16vB(RZ֌Z*"K;C%m :V`Mtb1FB#"Z*,8sy΁NQTl:0lHX8\#_ArB@KGWy gmZGWm4CR9UZ*`uxl׮rlV缾##s.SBS Bv*ܗ`clm _*j\ףhYM3ЦKZB`)Vxq֗2HD<QxKa-.+ERw߿l]A$e%5y^p@wym<0Lilj^{ʪyҠZ.3|'R͎A>w˅㠮t^ F*+xl;k{i;[]"!x;D|G8{dJcH\ެVfUL[{g?mcc+ n&Sӳn<ظqcm/d(YHsh^y{9H[:y£qnl=v "=bx#<_v(0X_ZR< {dZ/%d\cI9I7%M34<βgxrշɫϙ`h=ōgIƆwZiyjv8OffI{KM;6 -_XL#<^z>2ZݿG&y=4<&КffMZ6y҈b+C/2f}*^4=MRQV,׸=%fgl߹c4= :EQDx kC_ m4h4 C!g}\&{f/cQ\Ci")IG_)88ctc+g 3uIu ORNVeYFZ,.vҌ۷luh^x.M ;)^cw<#FcQ̆ }}(IYhoiw.H.os.BD ?yi&)wf1xc#e^4+$iG{vZҏ}&N0λ.O=|#Saa 8輠Ж4פYF5vqeU7ddo<\?}(nsa5YcMRIB9݄`eq>=t)_rxg1EAdEAf4]͑t@]`|nvI$YN wyyt9mC^( YS$]\Q;sݧrV>Es.ٵu98~w3-S0ѺX9y99.ٶ?_˽ꦛa o3AX:w'<8L, [nnZhӞH:Ph_nT/sdHuzy+Be-֕"#&t)mΐwH#W`o:o56{n[(ٹy3s>֟&vZO゚t }.E3,GMCfݧĽo}[1֦S` - t"~^q+W;OtC2E@ay zF3K$_r>u {yH9g&EZmI)"YnIB[=W=n``to?$?{<g,g}oo5{}lG&CJSh,h3"O)Ҍ(f:{~-57$ zx0YP)ymOj]{>֭adh%:/h/&Bt_Z_m ߋ0IL6 aW^qjd57̜3tʾ>/ "R2$>F^etF/Z~.Or IENDB`gav-0.9.1/themes/yisus2/plfl.png000066400000000000000000000134611423175241600164760ustar00rootroot00000000000000PNG  IHDR<4֯[gAMA abKGD pHYs  d_tIME!IDATxŚyUu?twzW C-T@MIڥVL;!Y+NǕrN T Ѩ$ THQUTQӫzo8CUC!du}w={8{AJ9NrH#*JB)J.Vu_떻eg-ιެz*75#QsUF]TϘce)B.N!CBҁst ϕ\<gQH@*x:pՊ_R*9!ҦOpڨ"9ZASE>-uc2;iŐk Co9йdbC_y{uAe; =y/ǖ6Qcniwv*GxxOk4,w ځTs BNR|VUe,έ2o?>۷[`Lc%A)5CQ̺aGќ~p4?Yi&@o}ls~#1/bNmbے)1ABwDo\`G! )o*j,DžX{ 6!PC /~Ro !|J2RȧGl:iNQSXiTH+|2'ssyI2*JxXT$Ā g2|05:3lø 0\&Q҂M 7sw1iyJ]fϖ{_el`k91*T=N:ELx"pa]>𮿧_1 GqL .e!1a'f]BIz n@]f7$i* zd(E!lԕXיHzjPŒiYxF^˿0Z0ЫfA)%Y&*M@f ls>BW`Hh\!:2j{ӈ9C~LQU4m i ?;̘a׻|㦯q!<&W$ }E`Ǿ|%xթr* >Yh,R! B&Iz*`A90 F6y$ LO3dIc2 R[_%4b%`PG9-SCitU"x`c,56?-ˊ7dt H>#嶣;M^{fL3Ѳs\ɋ H*E1\l =$s%FJ. ñ2HmT&a Rk-ʒG<@]\(buSٗAa`F2m|:htL t~I"e=? YwL22z߇d(#G$k\a泟a>~%a!~YḱwTb;R"VLYL9ٴg̕^J64؃g_p"mtrv6a^=kNTZ,/ ӳU6&CGG`2g^Dͮc!l2VI|1)vtAƘ'%>SH.\X] i-g̕>"2h^QMDPZT*6iVBV"& ޅJ}J Cş|;n{t6ߜ0=ˆ0^0iA[)ڌcl3υL3Ku+Me`Υp cܱ48 AXydzw4u3h/n5A,`#Z9<'lGx]IK!OKimД6i޺fIGk =fm˚$uw@d~ h}rHfEL/zN3]2-Zth]0qxM ?+o?ྯ?C\6 ;p>>y(=R/d(_;TH{!:LFe 7c`*[zwKtkĘ~FN{oXIN@ѣOB܍`ȟJ~9\əOXK8RKwo~LAѣGpSG4$?3W7 yKS]/օٗ|u|w9ڈB`G0 K/AEH(U4c`xJgٴ6'rEkΜ"6MRV!ʒǀ1X!=Y٤q/E!NY(wtEBL }|<$7I<;sVlwǣ >ͫǎHjw|;Wqޚ㑝W8er"X`BpB1̐ pǏ:Y;$\ij8w9' IS9\A_FqX!91uG]g_˜,7ZOm~MJqM0AykPcL2YnܠmX>eH,I ˘]~~eq4X-|ٓ+z<Gk:bfvq&Ip"Y'iHE..z ߗ7F AT"P Z:QJY 0ESP_\meÍ_@eIӞ&{^ȷ*#)#'6qC-S&)&ķAOrcMYT)Q y|ʮBL5L# 4u’sERp5+k,uXi8gٹm(xIN+s{[ܷݤ:7=8w%jQ*%u|/[kUx\,8eh U"BR¡08@f?s7~rka#b,KqձJTH'x8R@ 3I}9o$q}IY_eD?A۬H;K!{ZO&zUbhN!E@HT`eegAEsgrރ)dgx"*yԇxGpuZCaB{,`i4X)8' o4ox9y)*I*ľCg'أI%pN|;=>!8A8)!9Q>.r(-Oҙ⛞C*;+Mf7ӧ%3oԸ#D}8m<;; l;j8sǓ~*zzH wi‰GϝhfnW̓7_'ba᳸9r&&iaTf4Kӆg&(sn0ĩ :eslH"tk&/Y.︓s兦÷+| \9j['+ttU\NxY_o:/{]xrB^PX [Z[?BD1gLROӷ>!w^̳UY Oz*1|U+nKOAjV$JF-N {#Hqz]fVR.\ q ChG*CW]a(֭(hh4``D(=6)3QaWVb'l/enpT*YdH/˜eD<~[0އ}dkOOIz4TFZrzh6:FW|f篝`"u\2R0YKdRUtLLTzYuV2CU`~xFQP=-/<|ixJ"NL1t8l47gW LpZzVw g'eBRjtD4uKhE_y4KG̳d@#%(JH $=8ՠI&p HTK4Z}$##%ÒyMiЛCr X|1E\fuB3|NJ87+(_Q)^( t=jm-}I+%0Az!Dc')X# [avrhorKh#XgIEƎAdL'oRSj‘=h hN=tڧ?X艧I/a^Hkb($-;(3ȕA jUH{T{ h{>auL-qF+@J2Cez1C+`XN EyUNGrQs=*8)b^aW]tA%[ w=""|SƑR'GxmFX+|@p&`%1d+YP,4|^haz(N|t%|~c#$#tC؞fJ(,Zg( \QcI1G(  \l/wv8- [͝x.vGG& %hc+#PR!HD 8H |0jo\.uj`8񬚮S$x44_M4z 6NgX3c 9pOiD=B%i_eI gWKܠ|NxUFEͦ2z=<<(a&[ͬ1LyL-qƯҮ9w}HgؑbɃpuD8QEtnXuFj'^ʕ^h AA`1>]w~$e#jeMBeI$t>9ɐ7-N*ʧ(_]'U_ļI20p \5j=QWJDXZdd4ڬ|YYhBNqLWQbyO}{~t}ٚђ`U )NI$@9L)kEJyh־h5iM+-ǃKY )"itX`I=t:(0ƐeٿNkrE-y[^j* K;D*%5^x?aF7li#EOJ@߰|DP7~qw0T\/̑mL t )3p/|\+*d}P}p$B<"_/~˔N*e!K2qa*t]ݿ ^0fQ.ń`\Hzhsjֆh e*;:x'߼F=okunl H(.UYzB\&4R$8CY0_FM 19ՙ]4&lf3ÀИn3c:s#+@v%i-mk|b!v\2/=M|X7Ux:]΃(⋷~%J8*,_@e#L. |kl1[6] DtkuHJk̉\+ۄ Z8u UsY}892=Oz>?u*N8WdnF7|]7pdt@[t>D+2*rXy=8@k(5UsJBX4#ֲdҲcI z(Ch,YZ mR[FYr{0y=xU_}o5Q(,SLHw)jEGGAVX PmFyvAce*!_JJ )4H,1-;+4l:aAx#1eoz~ .o&HƄIBl'ȗ%@8D]Lrx'la~q q6Ìe6ݔ#EO;6gvv5rSe@`:j''S!i6 +Hs4 Pvpv3 ެL-&#j,iBFsv7+S% i q E.;rB <)_G8<0.gx̋ =-z? Z ?fG+qdBT0 SU6 hn7s"w޶FvỾu>N~:M5%*[y__NUy=Hujs~w#ihc3hc"Xk _tɭ!51SXf:saTNxA3;Z7vߞӚ_~᧹??DBȰ꟢)&s_}2 >Q8BtGKS( Fe&bwgjߏ{7 Ӥ(]TmvϠmĮ-h_B(NnSc{U^G^]P %C~y` =NA09LFpy5IY8n1t0V(}{lbYu Y_E =@ O^,◾k\ Q/lw>= (8oO֢e Jr  $'{;Ou6Xgƅ gl7!c+n=vVR;{?e*iRfYB 8@k e~l` ёm۩q^qb>> +U)9_zS9',vo7Q\=־HLl!*;8L;U֎¿} z%Q q^w>na$ ۞V|ml*ܙIqg:֕)R+~A |`P@!x8~ͫ8FrOYW$>م3W ? LFIlP^qk8!U&hF Ex9Vt]^}yXuՍH=ya$Oõ\L}БYAމƒKwBN %'x/8%g8%g!7l⿌\5l+&O0+kgOPt.E 8W<-8}\q WN1Sx8>w5&PYѹڀ_'=hO=וG ^㴹bCka`k'QDmx;"~)O(vt0*o"$ıg;]^>F/}UORlY'O?)9xnAŁ'KEq,%hpPM݅.泛䪅pS|rF lc-;(L7c: tU曐y`3\Ҥk$(PAx@dHY|zGcM}[R D0%XrP{k/>Bu~+V*W\_u-ᝳDғ]Tj5jM͑N!G;p&G@X7(ʜFXP#a. `R W ~E2hXNv)5U|d@[P!%q,c\ս$γI ^7!%9mOIs*.NVkE0Q]iS1IC@,v'q1Soۆad¢mq5g_f.oAy}\8O_6JS2qV` LPjRh5α,}Wtg}r$3R`"䌘׬`OƎ!_aKm}̎یֆ(b؅SڗXHV:50^@.Lߵ9Nt!SˎS/F.[YZj:@ER RJ=5I:rn邌zt]ԙ,]]#088x =Z~zBٲjI1߻ZڸnE{/(F ZS&-mzC\wrvm^18k?{o5%Q-@XGT-wnxYVDX}n#t} O83 gϚ7t-nt #0BmR2Jwh"q3P>mau BZB') r?FZ|BmĹöv\Mvdz!ⲠJos㡐5+|Lc7mY9Dg<N!ShǓ ߿lM1@;Rhsݴ`K?ݰyCK)?_ K-6F43JJټ^[3? ?QD7L61xj  f#!c?z_༦B?gb-z3|f `?5b-"y'N0Bg%%dpjj%VLFAMpʍ (izɲ}^ghq{BILtJ euXSٱA~r427 RL8S39Eރь;iaT爫 I?䂡E gq)?@#ʛu'+y\sHhQA.5n]GEqpqhY8qT!2jhty--x]WFoz|*|ꞛ&ޡAYjly'y4Ik[ \wuNguy!$E+{1`Y!G#%F^0[6<|-mȾ=ɔcRA>U ]!lZ1Aw_0z\Ƒ)GP`]ho7rC1#A86i9|ήC~j b (F-N8XXK\kc#G^n42$E@ST(gv$oN#)As{s=BG0Q1'77uOGZ` +KᒢInn ;Zy^ɘuk4Ԧf7IA;fDe@!sVO6Ȏ6 TS4*sLH}nxu xg'4m3<вa$t&  )ϰBg">xg˾HpN5K f57E 6Ocn#SBG !{Šag0Ls$RA743,ݾc;ӞV0 өQT2˺ uN QÜP=B.+AeOxX9);tl:l/c^8Yxj'Ј2X^,tt//gxpc Ű}ůz <5ey,81 ò#x>gbr"f2[Ţ2놊iʂ,GSַ)@<q0u0 &zy/_t;28*,9(&&("H,n$͔Gmۮm,_1y Ѩ^T:)Trs#*Cf0qTzF;i4ԌgSu,"AhYb"Sa(z)J"Mgh:)TqŞRYEl:7JN"%U/]5Kx QguwZ`{U$E,H{d)d%RҨPW5$b_Ptӊ`D1d>{g.[6 LCt1C`#dO^: )dpqP 7haRG*B_Bѐ/(341pfx.xLk̛kj l`&2p"ao{qBu Օs^D+eY69s~}>]ɤG]6Mpb,ƶVN2 FCl X㒍F2!&5/Sci)SE,!@aS(>ڍ^IB[hh6c 6 4fe/jVMI 2 1<$"EKJ Xvx+1̺a IT) OpRIB?{P-6\P/˝8Lu^ +~٥˗lI!RŽaS+p.ew&hM]jY;?X|%: {KQv,1mLEhֵmea<^u9grEѐfs¬=&k׬L$]ve.cXo嶯[zժC;]6$.a  ڡ`4ŔebZ&Ybն-h7Q_Ȟ.=tFC(a NA` nEaMtpZ^a~>kYK@ی["(b4 Ie]sUbHM340ɱ/~/u>_,VpS0B 0!~>Պ2&*@g7MyW_&Hֿ.ړ<5 >Ӵ ꎝ3$Y !Lb4 '@u0!Lh%yLMeyƸGt,{SN'< 3ψ|KhG,-:'[WR }˿' #RrFn(qb"fJMM^Ǣ@̵N)%[ Y(@B5yV<Ͽ7< u8* a渝68AmXUrĚֵh,K<4e?CJH~嘙k--ͧNYJwWç]Xn]8"J#hl#˕@cO1\eUfqV_)AN2{:ĐcLyYsX#nV?ɦTB>إw}Гf4& y\,NFB~@=/Q4X剥06Eq,ZB13xy\gqݰB-X֭,\K6 !iA? { -MRR0'?X^rϻ]E.,"#Q`)a _Z7v;U$Z1U焏MQ; ~Q FA 5x*$; Jp61q0$yxɕ_wFz;v\;mܤ*\(*Jsr z(Jp+=D(i)HEm@ R-ҴQbNxXVBE-謹Zkͷz,&'xҒ²2Me> VF pwo]`n".AJ:ݭКnQض4nahi6~Y{Bz!4OA{ ~icЎ  bժl۶geOOp"s_%DU葄)e<dK54]+raX+9,jgCh"NLS=?0}< h;|zRds$Wq`8[`od9ICYYN4JtZu.tfSd_ة([pQdjdADyBv<8o9XƟ3jG&' vsL~. P 8/#>Y D$,.7ތvng-)κ%Q|Ac=0EV'o0Ň*BlHp9Mx聤=aR}E R<&.FcO> !&#/<~SA #g]:ͧSݓg|߈l1VB@:C42ՀW2vg~+g%'|B~k Bg>m⥓'Lb\Uj:Xj\!`8cw{2ճ]qutL{m:kw!ښΚ;w[7 +3IUBweAO7U5'Q#jF ' _> _@W ]x[2g&|dR[¡Ǵ <kP o"E7]Yjme@񌬮 ;ФpklqOv͹q Ǵt.ֻ="LlԼ %DdgάpAI햓U=4lhqi~yC+ȯY'B!J\iwDu *@ 75h56a88=/lOf[f:ڑ̀32pqiI  ?m߽Ӧ9W_駠1C*Ȉ$`$x>Oc,Kn2\&zck5]uy9#+2MnAE#.Q䑍 p ]z>wȈe`szA&N5%cN-Kȥ O{zӳ=eRlj ^}5UaHJ&̧h/?ܚg rCZ;b++N}DLk,'sq4e3.ʐ M IAiO{Yic$ h *+呣\{%Tm%,YB$]szNbIڦ-MuUvQEWp)Q3h1+ IQt ^1yD^d_v[LوmN[; G) D\H`=֖W|LBt[HQ!hZ:T%봵s C(g^xA(U3r!eUȗyByM _T;Tv arN&@0 LDؿ!%w!ɸ(t=a%v0`dݒؕW;:°LBi+:zߛ<{9fۆK6T0#H eNgОjO5!JWP~7YqBaݝS}MEٔTHÕ˃LUլ MGVW˧=">DʱdD| 5dP閅ozu}IA#̉Q  xKMLݝSfk7Btgy.6Ä/"+)dLsXVa=6#@8(QAI:SrAsЂ,#ݥCxZ}rw$O#PINI(@sڹH@]0T4,aI,H HϮ>Ȑ2!c-4'HEaqp*:8JQ--IҬ7 gZв,}y.Wm8"`SN4$i2{a2%bXpõX[N$nm[IG@Dj _Ux$_{5hֲP8iQrzB`LT8t y^b/ -Ao&:+Hf3+QXO+KO?R~Oh,B<'Omm#+}4#d)ch 2̵o~DWؿw430A rт:6ERKfr_Pvf[i7ֶ+1,MRm20RejH_3-i0_s/^R)mL6ni+XYjFSd8´OxW>8b`|Rn6z}vK/˸ [7BmLAY GQ5ϔAtK [SPM>3rl~w7)ew,k~8+eo/6"t`f߼#W6^W[龗8ۣ=yZo|"TQYV%JB0 ӄڴ$9Q_T6yvem -(Im뱔lJ8/:25>|tHOѤIB-n9-OXsi7kΜ]zow鞦/ z |OgIґ|10ynO_w~ysyABu"C: ;E '4E;g-BbJm$u]6]8QF70 9p{G^dI^KwGt&a,+ܑ6}klUcgfw[Т&C|%AiѠH bhBD4B QJPE'F#y;βLw߷ݝ{?w{wr(߾oM1r ftL STOs x; G0|p46R85}8h&mf(ͤHZvϕzH_wTƓ[tKp _sizʣ5#`dTVEҬi"X=$ڙUx種c;>18vqFhFbHFdʰeYu 3mغ["^4.u*ĦJ$("3}(W9] Ob(N4RK|q39-Ǿ d&RQʱC!0I DU[%a[Ӎ1@@@Ra]x}CS7?rS%ͿE*\R:( ""TULyeg,əUC! p:SDmË>?a @_[(.ᏔxPc9Q#aARґ↓ZZ;:R)"m+G I94H&ز4lװ}}<.H/:M WZl-QwpL(AۛP9SR)Š9+N#6 rWwٝ^9Voh$DZ!i*.:8X$ j?_w MQE4={9eqqRo%%'.Gv5]q P`Y-e q.p-$дMMg>{V@}BM"io4