diff options
author | se <se@FreeBSD.org> | 2004-12-29 02:27:47 +0800 |
---|---|---|
committer | se <se@FreeBSD.org> | 2004-12-29 02:27:47 +0800 |
commit | 43daccbdcad2cdc1873353a3667b86959432b56b (patch) | |
tree | c0cdb096bfcafb3369b9900115d9b9500792c602 | |
parent | 7d2d34afbb477c675a7bbedffd527a7f9b4f9696 (diff) | |
download | freebsd-ports-gnome-43daccbdcad2cdc1873353a3667b86959432b56b.tar.gz freebsd-ports-gnome-43daccbdcad2cdc1873353a3667b86959432b56b.tar.zst freebsd-ports-gnome-43daccbdcad2cdc1873353a3667b86959432b56b.zip |
The original developer of xblast seems to have vanished years ago.
But now there appears to be active development, again, by a group
that has gathered patches from different sources and started to add
a number of new features.
Upgrade to xblast version 2.9.22.
-rw-r--r-- | games/xblast/Makefile | 48 | ||||
-rw-r--r-- | games/xblast/distinfo | 12 | ||||
-rw-r--r-- | games/xblast/files/patch-aa | 30 | ||||
-rw-r--r-- | games/xblast/files/patch-ac | 11 | ||||
-rw-r--r-- | games/xblast/files/re-image | 1 | ||||
-rw-r--r-- | games/xblast/files/re-level | 1 | ||||
-rw-r--r-- | games/xblast/files/re-sounds | 1 | ||||
-rw-r--r-- | games/xblast/pkg-descr | 8 | ||||
-rw-r--r-- | games/xblast/pkg-plist | 3450 |
9 files changed, 2603 insertions, 959 deletions
diff --git a/games/xblast/Makefile b/games/xblast/Makefile index 60bf53814356..bdaf88710fb4 100644 --- a/games/xblast/Makefile +++ b/games/xblast/Makefile @@ -6,17 +6,55 @@ # PORTNAME= xblast -PORTVERSION= 2.6.1 +PORTVERSION= 2.9.22 CATEGORIES= games -MASTER_SITES= ${MASTER_SITE_SUNSITE} -MASTER_SITE_SUBDIR= games/arcade -DISTNAME= ${PORTNAME}-${PORTVERSION}.sound +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= xblast +.ifdef (WITHOUT_SOUND) +PKGNAMESUFFIX= -nosound +.endif +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} +DISTFILES+= image.tar.gz +DISTFILES+= level.tar.gz +.ifndef (WITHOUT_SOUND) +DISTFILES+= sounds.tar.gz +.endif +DIST_SUBDIR= xblast MAINTAINER= se@FreeBSD.org COMMENT= Multi-player real-time strategy game for X11 -WRKSRC= ${WRKDIR}/XBlast-2.6-sound +CFLAGS+= -DGAME_DATADIR='\"${DATADIR}\"' +.ifndef (WITHOUT_SOUND) +CFLAGS+= -DXBLAST_SOUND +.endif USE_IMAKE= yes +.ifndef (WITHOUT_SOUND) +ALL_TARGET= all xbsndsrv +.endif MAN1= xblast.1 +.ifndef (WITHOUT_SOUND) +PLIST_SUB+= WITH_SOUND="" +.else +PLIST_SUB+= WITH_SOUND="@comment " +.endif + +.ifndef (WITHOUT_SOUND) +SOUNDS= sounds +.endif + +post-install: +.ifndef (WITHOUT_SOUND) + ${INSTALL_PROGRAM} ${WRKSRC}/xbsndsrv ${PREFIX}/bin +.endif + ${MKDIR} ${DATADIR} +.for d in image level ${SOUNDS} + cd ${WRKDIR}; \ + ${FIND} $d -type d | (cd ${DATADIR}; ${XARGS} ${MKDIR}); \ + ${FIND} $d -type f | ${EGREP} -f ${FILESDIR}/re-${d} | \ + while read f; do \ + ${INSTALL_DATA} $$f ${DATADIR}/$$f; \ + done +.endfor .include <bsd.port.mk> diff --git a/games/xblast/distinfo b/games/xblast/distinfo index e38e11f94e44..18e028922e5a 100644 --- a/games/xblast/distinfo +++ b/games/xblast/distinfo @@ -1,2 +1,10 @@ -MD5 (xblast-2.6.1.sound.tar.gz) = 169561641e9e97c5c0c9eafada7a925f -SIZE (xblast-2.6.1.sound.tar.gz) = 3102032 +MD5 (xblast/xblast-2.9.22.tar.gz) = 658e91e053e9d7ff78979688325c806a +SIZE (xblast/xblast-2.9.22.tar.gz) = 4969378 +MD5 (xblast/image.tar.gz) = 479c0de348c18bcfa6f3718729930400 +SIZE (xblast/image.tar.gz) = 4643000 +MD5 (xblast/level.tar.gz) = 4c4a4a121dc2381534d5d3f7b5ca59f5 +SIZE (xblast/level.tar.gz) = 267681 +MD5 (xblast/shapes.tar.gz) = 1906d6d80a78e4e8d2b4acabb36b4128 +SIZE (xblast/shapes.tar.gz) = 1613355 +MD5 (xblast/sounds.tar.gz) = 809c27f1002ad4d7aa836e083f52a199 +SIZE (xblast/sounds.tar.gz) = 1612625 diff --git a/games/xblast/files/patch-aa b/games/xblast/files/patch-aa index 754ca37d387f..1854da2fcee7 100644 --- a/games/xblast/files/patch-aa +++ b/games/xblast/files/patch-aa @@ -1,23 +1,11 @@ ---- Imakefile.orig Thu Jul 29 04:36:20 1999 -+++ Imakefile Sat Oct 21 08:33:56 2000 -@@ -25,7 +25,9 @@ - * If you want to have sound, comment the following line - * Set SOUND_DIR to the directory, where the sounds can be found - */ --EXTRA_DEFINES=-DXBLASTDIR=\"$(XBLASTDIR)\" -DXBLAST_SOUND -+EXTRA_DEFINES=-DXBLASTDIR=\"$(DESTDIR)$(XBLASTDIR)\" \ -+ -DAPPLOADDIR=\"$(DESTDIR)$(XAPPLOADDIR)\" \ -+ -DXBLAST_SOUND +--- Imakefile.orig Wed Jul 7 12:52:58 2004 ++++ Imakefile Tue Dec 28 17:53:45 2004 +@@ -72,3 +72,8 @@ - /* - * all programs to be build -@@ -71,7 +73,8 @@ - SRCS2 = xbsndsrv.c - OBJS2 = xbsndsrv.o - --ComplexProgramTarget_2(xbsndsrv,NullParameter,NullParameter) + AllTarget(xblast) + ComplexProgramTarget(xblast) ++ ++SRCS2 = xbsndsrv.c ++OBJS2 = xbsndsrv.o ++ +NormalProgramTarget(xbsndsrv,$(OBJS2),,,) -+InstallProgram(xbsndsrv,$(BINDIR)) - - /* - * Part 3: install Application Defaults diff --git a/games/xblast/files/patch-ac b/games/xblast/files/patch-ac deleted file mode 100644 index f9a3e2361966..000000000000 --- a/games/xblast/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- sound.c.orig Sat Sep 7 17:50:13 2002 -+++ sound.c Sat Sep 7 17:50:35 2002 -@@ -110,7 +110,7 @@ - #include <sys/stat.h> - #include <sys/wait.h> - #ifdef __FreeBSD__ --#include <machine/soundcard.h> -+#include <sys/soundcard.h> - #else - #include <linux/soundcard.h> - #endif diff --git a/games/xblast/files/re-image b/games/xblast/files/re-image new file mode 100644 index 000000000000..9c795ee84941 --- /dev/null +++ b/games/xblast/files/re-image @@ -0,0 +1 @@ +\.(epm|pbm|ppm)$ diff --git a/games/xblast/files/re-level b/games/xblast/files/re-level new file mode 100644 index 000000000000..a71f5a59b38c --- /dev/null +++ b/games/xblast/files/re-level @@ -0,0 +1 @@ +\.(xal|ppm)$ diff --git a/games/xblast/files/re-sounds b/games/xblast/files/re-sounds new file mode 100644 index 000000000000..916220b0d42f --- /dev/null +++ b/games/xblast/files/re-sounds @@ -0,0 +1 @@ +\.(raw)$ diff --git a/games/xblast/pkg-descr b/games/xblast/pkg-descr index 503e5d62bf1c..366bf2d217ac 100644 --- a/games/xblast/pkg-descr +++ b/games/xblast/pkg-descr @@ -1,9 +1,9 @@ -XBlast is a multi-player arcade game for X11R5/R6. The -game can be played with at least two players and up to -six players. It was inspired by the video/computer game +XBlast is a multi-player arcade game for X11. The game +can be played with at least two players and up to six +players. It was inspired by the video/computer game Bomberman(Dynablaster), which was to my knowledge first programmed for NEC's PC Engine/Turbo Grafx. Other (com- mercial) versions of the original game exist for IBM-PC, Atari ST, Amiga, NES, GameBoy and Super NES. -WWW: http://www.ndh.net/home/m.vogel/ +WWW: http://xblast.sourceforge.net/ diff --git a/games/xblast/pkg-plist b/games/xblast/pkg-plist index fa47c4c15e34..5035f36b2581 100644 --- a/games/xblast/pkg-plist +++ b/games/xblast/pkg-plist @@ -1,917 +1,2535 @@ bin/xblast -bin/xbsndsrv -lib/X11/app-defaults/XBlast -lib/X11/xblast/bitmap/block/air_pump.pbm -lib/X11/xblast/bitmap/block/bomb.pbm -lib/X11/xblast/bitmap/block/bomb_floor.pbm -lib/X11/xblast/bitmap/block/book_shelf.pbm -lib/X11/xblast/bitmap/block/box.pbm -lib/X11/xblast/bitmap/block/brick_O.pbm -lib/X11/xblast/bitmap/block/bricks.pbm -lib/X11/xblast/bitmap/block/button_floor.pbm -lib/X11/xblast/bitmap/block/button_floor_S.pbm -lib/X11/xblast/bitmap/block/check.pbm -lib/X11/xblast/bitmap/block/chess_floor.pbm -lib/X11/xblast/bitmap/block/chess_floor_S.pbm -lib/X11/xblast/bitmap/block/chess_sphere.pbm -lib/X11/xblast/bitmap/block/chess_sphere_O.pbm -lib/X11/xblast/bitmap/block/chest.pbm -lib/X11/xblast/bitmap/block/chest_O.pbm -lib/X11/xblast/bitmap/block/city_free.pbm -lib/X11/xblast/bitmap/block/city_free_S.pbm -lib/X11/xblast/bitmap/block/city_rip.pbm -lib/X11/xblast/bitmap/block/city_rip_R.pbm -lib/X11/xblast/bitmap/block/cloak.pbm -lib/X11/xblast/bitmap/block/construction.pbm -lib/X11/xblast/bitmap/block/control_alpha.pbm -lib/X11/xblast/bitmap/block/control_num.pbm -lib/X11/xblast/bitmap/block/dark_block.pbm -lib/X11/xblast/bitmap/block/dark_block_R.pbm -lib/X11/xblast/bitmap/block/dark_house.pbm -lib/X11/xblast/bitmap/block/dark_house_R.pbm -lib/X11/xblast/bitmap/block/dark_way.pbm -lib/X11/xblast/bitmap/block/dark_way_S.pbm -lib/X11/xblast/bitmap/block/display.pbm -lib/X11/xblast/bitmap/block/downarrow.pbm -lib/X11/xblast/bitmap/block/extra.pbm -lib/X11/xblast/bitmap/block/extra_O.pbm -lib/X11/xblast/bitmap/block/firecracker.pbm -lib/X11/xblast/bitmap/block/ghost.pbm -lib/X11/xblast/bitmap/block/ghost_ci.pbm -lib/X11/xblast/bitmap/block/ghost_ci_R.pbm -lib/X11/xblast/bitmap/block/ghost_sq.pbm -lib/X11/xblast/bitmap/block/ghost_sq_R.pbm -lib/X11/xblast/bitmap/block/hex.pbm -lib/X11/xblast/bitmap/block/hex_extra.pbm -lib/X11/xblast/bitmap/block/hex_extra_O.pbm -lib/X11/xblast/bitmap/block/hex_wall.pbm -lib/X11/xblast/bitmap/block/hole_floor.pbm -lib/X11/xblast/bitmap/block/holygrail.pbm -lib/X11/xblast/bitmap/block/ignite.pbm -lib/X11/xblast/bitmap/block/invincible.pbm -lib/X11/xblast/bitmap/block/iron_floor.pbm -lib/X11/xblast/bitmap/block/iron_floor_S.pbm -lib/X11/xblast/bitmap/block/jizz.pbm -lib/X11/xblast/bitmap/block/karo_dark.pbm -lib/X11/xblast/bitmap/block/karo_dark_S.pbm -lib/X11/xblast/bitmap/block/karo_light.pbm -lib/X11/xblast/bitmap/block/karo_light_S.pbm -lib/X11/xblast/bitmap/block/kick_bomb.pbm -lib/X11/xblast/bitmap/block/lego_black.pbm -lib/X11/xblast/bitmap/block/lego_black_O.pbm -lib/X11/xblast/bitmap/block/lego_floor.pbm -lib/X11/xblast/bitmap/block/lego_floor_S.pbm -lib/X11/xblast/bitmap/block/lego_white.pbm -lib/X11/xblast/bitmap/block/life.pbm -lib/X11/xblast/bitmap/block/light_house.pbm -lib/X11/xblast/bitmap/block/light_house_O.pbm -lib/X11/xblast/bitmap/block/mayhem.pbm -lib/X11/xblast/bitmap/block/morph.pbm -lib/X11/xblast/bitmap/block/mr_beam_bear.pbm -lib/X11/xblast/bitmap/block/mr_beam_bear_O.pbm -lib/X11/xblast/bitmap/block/mr_beam_free.pbm -lib/X11/xblast/bitmap/block/mr_beam_tv.pbm -lib/X11/xblast/bitmap/block/multiple.pbm -lib/X11/xblast/bitmap/block/napalm.pbm -lib/X11/xblast/bitmap/block/poison.pbm -lib/X11/xblast/bitmap/block/pow.pbm -lib/X11/xblast/bitmap/block/pumpkin.pbm -lib/X11/xblast/bitmap/block/pumpkin_O.pbm -lib/X11/xblast/bitmap/block/pyramid.pbm -lib/X11/xblast/bitmap/block/pyramid_R.pbm -lib/X11/xblast/bitmap/block/q3a_beam.pbm -lib/X11/xblast/bitmap/block/r_i_p.pbm -lib/X11/xblast/bitmap/block/r_i_p_R.pbm -lib/X11/xblast/bitmap/block/range.pbm -lib/X11/xblast/bitmap/block/remote_control.pbm -lib/X11/xblast/bitmap/block/rock_floor.pbm -lib/X11/xblast/bitmap/block/rock_floor_S.pbm -lib/X11/xblast/bitmap/block/score_drop.pbm -lib/X11/xblast/bitmap/block/score_floor.pbm -lib/X11/xblast/bitmap/block/score_left_down.pbm -lib/X11/xblast/bitmap/block/score_left_up.pbm -lib/X11/xblast/bitmap/block/score_mid_down.pbm -lib/X11/xblast/bitmap/block/score_mid_up.pbm -lib/X11/xblast/bitmap/block/score_right_down.pbm -lib/X11/xblast/bitmap/block/score_right_up.pbm -lib/X11/xblast/bitmap/block/score_step.pbm -lib/X11/xblast/bitmap/block/slow.pbm -lib/X11/xblast/bitmap/block/speed.pbm -lib/X11/xblast/bitmap/block/sphere_dark.pbm -lib/X11/xblast/bitmap/block/sphere_half.pbm -lib/X11/xblast/bitmap/block/sphere_half_S.pbm -lib/X11/xblast/bitmap/block/sphere_light.pbm -lib/X11/xblast/bitmap/block/sphere_light_O.pbm -lib/X11/xblast/bitmap/block/syringe.pbm -lib/X11/xblast/bitmap/block/temple.pbm -lib/X11/xblast/bitmap/block/trap.pbm -lib/X11/xblast/bitmap/block/triangle_bomb.pbm -lib/X11/xblast/bitmap/block/uparrow.pbm -lib/X11/xblast/bitmap/block/wall.pbm -lib/X11/xblast/bitmap/block/wall_R.pbm -lib/X11/xblast/bitmap/block/weight.pbm -lib/X11/xblast/bitmap/block/weight_R.pbm -lib/X11/xblast/bitmap/explosion/bomb1.pbm -lib/X11/xblast/bitmap/explosion/bomb1_mask.pbm -lib/X11/xblast/bitmap/explosion/bomb2.pbm -lib/X11/xblast/bitmap/explosion/bomb2_mask.pbm -lib/X11/xblast/bitmap/explosion/expl00.pbm -lib/X11/xblast/bitmap/explosion/expl00_mask.pbm -lib/X11/xblast/bitmap/explosion/expl01.pbm -lib/X11/xblast/bitmap/explosion/expl01_mask.pbm -lib/X11/xblast/bitmap/explosion/expl02.pbm -lib/X11/xblast/bitmap/explosion/expl02_mask.pbm -lib/X11/xblast/bitmap/explosion/expl03.pbm -lib/X11/xblast/bitmap/explosion/expl03_mask.pbm -lib/X11/xblast/bitmap/explosion/expl04.pbm -lib/X11/xblast/bitmap/explosion/expl04_mask.pbm -lib/X11/xblast/bitmap/explosion/expl05.pbm -lib/X11/xblast/bitmap/explosion/expl05_mask.pbm -lib/X11/xblast/bitmap/explosion/expl06.pbm -lib/X11/xblast/bitmap/explosion/expl06_mask.pbm -lib/X11/xblast/bitmap/explosion/expl07.pbm -lib/X11/xblast/bitmap/explosion/expl07_mask.pbm -lib/X11/xblast/bitmap/explosion/expl08.pbm -lib/X11/xblast/bitmap/explosion/expl08_mask.pbm -lib/X11/xblast/bitmap/explosion/expl09.pbm -lib/X11/xblast/bitmap/explosion/expl09_mask.pbm -lib/X11/xblast/bitmap/explosion/expl0a.pbm -lib/X11/xblast/bitmap/explosion/expl0a_mask.pbm -lib/X11/xblast/bitmap/explosion/expl0b.pbm -lib/X11/xblast/bitmap/explosion/expl0b_mask.pbm -lib/X11/xblast/bitmap/explosion/expl0c.pbm -lib/X11/xblast/bitmap/explosion/expl0c_mask.pbm -lib/X11/xblast/bitmap/explosion/expl0d.pbm -lib/X11/xblast/bitmap/explosion/expl0d_mask.pbm -lib/X11/xblast/bitmap/explosion/expl0e.pbm -lib/X11/xblast/bitmap/explosion/expl0e_mask.pbm -lib/X11/xblast/bitmap/explosion/expl0f.pbm -lib/X11/xblast/bitmap/explosion/expl0f_mask.pbm -lib/X11/xblast/bitmap/misc/text_bg.pbm -lib/X11/xblast/bitmap/misc/title.pbm -lib/X11/xblast/bitmap/score/led_off.pbm -lib/X11/xblast/bitmap/score/led_on.pbm -lib/X11/xblast/bitmap/score/player_1.pbm -lib/X11/xblast/bitmap/score/player_1_dead.pbm -lib/X11/xblast/bitmap/score/player_1_sick.pbm -lib/X11/xblast/bitmap/score/player_2.pbm -lib/X11/xblast/bitmap/score/player_2_dead.pbm -lib/X11/xblast/bitmap/score/player_2_sick.pbm -lib/X11/xblast/bitmap/score/player_3.pbm -lib/X11/xblast/bitmap/score/player_3_dead.pbm -lib/X11/xblast/bitmap/score/player_3_sick.pbm -lib/X11/xblast/bitmap/score/player_4.pbm -lib/X11/xblast/bitmap/score/player_4_dead.pbm -lib/X11/xblast/bitmap/score/player_4_sick.pbm -lib/X11/xblast/bitmap/score/player_5.pbm -lib/X11/xblast/bitmap/score/player_5_dead.pbm -lib/X11/xblast/bitmap/score/player_5_sick.pbm -lib/X11/xblast/bitmap/score/player_6.pbm -lib/X11/xblast/bitmap/score/player_6_dead.pbm -lib/X11/xblast/bitmap/score/player_6_sick.pbm -lib/X11/xblast/bitmap/score/text_left.pbm -lib/X11/xblast/bitmap/score/text_middle.pbm -lib/X11/xblast/bitmap/score/text_right.pbm -lib/X11/xblast/bitmap/score/tile_void.pbm -lib/X11/xblast/bitmap/sprite/big_1.pbm -lib/X11/xblast/bitmap/sprite/big_2.pbm -lib/X11/xblast/bitmap/sprite/big_3.pbm -lib/X11/xblast/bitmap/sprite/big_4.pbm -lib/X11/xblast/bitmap/sprite/big_5.pbm -lib/X11/xblast/bitmap/sprite/big_6.pbm -lib/X11/xblast/bitmap/sprite/big_mask.pbm -lib/X11/xblast/bitmap/sprite/pl_1_1.pbm -lib/X11/xblast/bitmap/sprite/pl_1_10.pbm -lib/X11/xblast/bitmap/sprite/pl_1_11.pbm -lib/X11/xblast/bitmap/sprite/pl_1_12.pbm -lib/X11/xblast/bitmap/sprite/pl_1_13.pbm -lib/X11/xblast/bitmap/sprite/pl_1_14.pbm -lib/X11/xblast/bitmap/sprite/pl_1_15.pbm -lib/X11/xblast/bitmap/sprite/pl_1_17.pbm -lib/X11/xblast/bitmap/sprite/pl_1_2.pbm -lib/X11/xblast/bitmap/sprite/pl_1_3.pbm -lib/X11/xblast/bitmap/sprite/pl_1_4.pbm -lib/X11/xblast/bitmap/sprite/pl_1_5.pbm -lib/X11/xblast/bitmap/sprite/pl_1_6.pbm -lib/X11/xblast/bitmap/sprite/pl_1_7.pbm -lib/X11/xblast/bitmap/sprite/pl_1_8.pbm -lib/X11/xblast/bitmap/sprite/pl_1_9.pbm -lib/X11/xblast/bitmap/sprite/pl_2_1.pbm -lib/X11/xblast/bitmap/sprite/pl_2_10.pbm -lib/X11/xblast/bitmap/sprite/pl_2_11.pbm -lib/X11/xblast/bitmap/sprite/pl_2_12.pbm -lib/X11/xblast/bitmap/sprite/pl_2_13.pbm -lib/X11/xblast/bitmap/sprite/pl_2_14.pbm -lib/X11/xblast/bitmap/sprite/pl_2_15.pbm -lib/X11/xblast/bitmap/sprite/pl_2_17.pbm -lib/X11/xblast/bitmap/sprite/pl_2_2.pbm -lib/X11/xblast/bitmap/sprite/pl_2_3.pbm -lib/X11/xblast/bitmap/sprite/pl_2_4.pbm -lib/X11/xblast/bitmap/sprite/pl_2_5.pbm -lib/X11/xblast/bitmap/sprite/pl_2_6.pbm -lib/X11/xblast/bitmap/sprite/pl_2_7.pbm -lib/X11/xblast/bitmap/sprite/pl_2_8.pbm -lib/X11/xblast/bitmap/sprite/pl_2_9.pbm -lib/X11/xblast/bitmap/sprite/pl_3_1.pbm -lib/X11/xblast/bitmap/sprite/pl_3_10.pbm -lib/X11/xblast/bitmap/sprite/pl_3_11.pbm -lib/X11/xblast/bitmap/sprite/pl_3_12.pbm -lib/X11/xblast/bitmap/sprite/pl_3_13.pbm -lib/X11/xblast/bitmap/sprite/pl_3_14.pbm -lib/X11/xblast/bitmap/sprite/pl_3_15.pbm -lib/X11/xblast/bitmap/sprite/pl_3_17.pbm -lib/X11/xblast/bitmap/sprite/pl_3_2.pbm -lib/X11/xblast/bitmap/sprite/pl_3_3.pbm -lib/X11/xblast/bitmap/sprite/pl_3_4.pbm -lib/X11/xblast/bitmap/sprite/pl_3_5.pbm -lib/X11/xblast/bitmap/sprite/pl_3_6.pbm -lib/X11/xblast/bitmap/sprite/pl_3_7.pbm -lib/X11/xblast/bitmap/sprite/pl_3_8.pbm -lib/X11/xblast/bitmap/sprite/pl_3_9.pbm -lib/X11/xblast/bitmap/sprite/pl_4_1.pbm -lib/X11/xblast/bitmap/sprite/pl_4_10.pbm -lib/X11/xblast/bitmap/sprite/pl_4_11.pbm -lib/X11/xblast/bitmap/sprite/pl_4_12.pbm -lib/X11/xblast/bitmap/sprite/pl_4_13.pbm -lib/X11/xblast/bitmap/sprite/pl_4_14.pbm -lib/X11/xblast/bitmap/sprite/pl_4_15.pbm -lib/X11/xblast/bitmap/sprite/pl_4_17.pbm -lib/X11/xblast/bitmap/sprite/pl_4_2.pbm -lib/X11/xblast/bitmap/sprite/pl_4_3.pbm -lib/X11/xblast/bitmap/sprite/pl_4_4.pbm -lib/X11/xblast/bitmap/sprite/pl_4_5.pbm -lib/X11/xblast/bitmap/sprite/pl_4_6.pbm -lib/X11/xblast/bitmap/sprite/pl_4_7.pbm -lib/X11/xblast/bitmap/sprite/pl_4_8.pbm -lib/X11/xblast/bitmap/sprite/pl_4_9.pbm -lib/X11/xblast/bitmap/sprite/pl_5_1.pbm -lib/X11/xblast/bitmap/sprite/pl_5_10.pbm -lib/X11/xblast/bitmap/sprite/pl_5_11.pbm -lib/X11/xblast/bitmap/sprite/pl_5_12.pbm -lib/X11/xblast/bitmap/sprite/pl_5_13.pbm -lib/X11/xblast/bitmap/sprite/pl_5_14.pbm -lib/X11/xblast/bitmap/sprite/pl_5_15.pbm -lib/X11/xblast/bitmap/sprite/pl_5_17.pbm -lib/X11/xblast/bitmap/sprite/pl_5_2.pbm -lib/X11/xblast/bitmap/sprite/pl_5_3.pbm -lib/X11/xblast/bitmap/sprite/pl_5_4.pbm -lib/X11/xblast/bitmap/sprite/pl_5_5.pbm -lib/X11/xblast/bitmap/sprite/pl_5_6.pbm -lib/X11/xblast/bitmap/sprite/pl_5_7.pbm -lib/X11/xblast/bitmap/sprite/pl_5_8.pbm -lib/X11/xblast/bitmap/sprite/pl_5_9.pbm -lib/X11/xblast/bitmap/sprite/pl_6_1.pbm -lib/X11/xblast/bitmap/sprite/pl_6_10.pbm -lib/X11/xblast/bitmap/sprite/pl_6_11.pbm -lib/X11/xblast/bitmap/sprite/pl_6_12.pbm -lib/X11/xblast/bitmap/sprite/pl_6_13.pbm -lib/X11/xblast/bitmap/sprite/pl_6_14.pbm -lib/X11/xblast/bitmap/sprite/pl_6_15.pbm -lib/X11/xblast/bitmap/sprite/pl_6_17.pbm -lib/X11/xblast/bitmap/sprite/pl_6_2.pbm -lib/X11/xblast/bitmap/sprite/pl_6_3.pbm -lib/X11/xblast/bitmap/sprite/pl_6_4.pbm -lib/X11/xblast/bitmap/sprite/pl_6_5.pbm -lib/X11/xblast/bitmap/sprite/pl_6_6.pbm -lib/X11/xblast/bitmap/sprite/pl_6_7.pbm -lib/X11/xblast/bitmap/sprite/pl_6_8.pbm -lib/X11/xblast/bitmap/sprite/pl_6_9.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_1.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_10.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_11.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_12.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_13.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_14.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_15.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_17.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_2.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_3.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_4.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_5.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_6.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_7.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_8.pbm -lib/X11/xblast/bitmap/sprite/pl_mask_9.pbm -lib/X11/xblast/bitmap/sprite/win_1.pbm -lib/X11/xblast/bitmap/sprite/win_2.pbm -lib/X11/xblast/bitmap/sprite/win_3.pbm -lib/X11/xblast/bitmap/sprite/win_4.pbm -lib/X11/xblast/bitmap/sprite/win_5.pbm -lib/X11/xblast/bitmap/sprite/win_6.pbm -lib/X11/xblast/bitmap/sprite/win_mask.pbm -lib/X11/xblast/image/block/air_pump.ppm -lib/X11/xblast/image/block/bomb.ppm -lib/X11/xblast/image/block/bomb_floor.ppm -lib/X11/xblast/image/block/book_shelf.ppm -lib/X11/xblast/image/block/box.ppm -lib/X11/xblast/image/block/brick_O.ppm -lib/X11/xblast/image/block/bricks.ppm -lib/X11/xblast/image/block/button_floor.ppm -lib/X11/xblast/image/block/button_floor_S.ppm -lib/X11/xblast/image/block/check.ppm -lib/X11/xblast/image/block/chess_floor.ppm -lib/X11/xblast/image/block/chess_floor_S.ppm -lib/X11/xblast/image/block/chess_sphere.ppm -lib/X11/xblast/image/block/chess_sphere_O.ppm -lib/X11/xblast/image/block/chest.ppm -lib/X11/xblast/image/block/chest_O.ppm -lib/X11/xblast/image/block/city_free.ppm -lib/X11/xblast/image/block/city_free_S.ppm -lib/X11/xblast/image/block/city_rip.ppm -lib/X11/xblast/image/block/city_rip_R.ppm -lib/X11/xblast/image/block/cloak.ppm -lib/X11/xblast/image/block/construction.ppm -lib/X11/xblast/image/block/control_alpha.ppm -lib/X11/xblast/image/block/control_num.ppm -lib/X11/xblast/image/block/dark_block.ppm -lib/X11/xblast/image/block/dark_block_R.ppm -lib/X11/xblast/image/block/dark_house.ppm -lib/X11/xblast/image/block/dark_house_R.ppm -lib/X11/xblast/image/block/dark_way.ppm -lib/X11/xblast/image/block/dark_way_S.ppm -lib/X11/xblast/image/block/display.ppm -lib/X11/xblast/image/block/downarrow.ppm -lib/X11/xblast/image/block/extra.ppm -lib/X11/xblast/image/block/extra_O.ppm -lib/X11/xblast/image/block/firecracker.ppm -lib/X11/xblast/image/block/ghost.ppm -lib/X11/xblast/image/block/ghost_ci.ppm -lib/X11/xblast/image/block/ghost_ci_R.ppm -lib/X11/xblast/image/block/ghost_sq.ppm -lib/X11/xblast/image/block/ghost_sq_R.ppm -lib/X11/xblast/image/block/hex.ppm -lib/X11/xblast/image/block/hex_extra.ppm -lib/X11/xblast/image/block/hex_extra_O.ppm -lib/X11/xblast/image/block/hex_wall.ppm -lib/X11/xblast/image/block/hole_floor.ppm -lib/X11/xblast/image/block/holygrail.ppm -lib/X11/xblast/image/block/ignite.ppm -lib/X11/xblast/image/block/invincible.ppm -lib/X11/xblast/image/block/iron_floor.ppm -lib/X11/xblast/image/block/iron_floor_S.ppm -lib/X11/xblast/image/block/jizz.ppm -lib/X11/xblast/image/block/karo_dark.ppm -lib/X11/xblast/image/block/karo_dark_S.ppm -lib/X11/xblast/image/block/karo_light.ppm -lib/X11/xblast/image/block/karo_light_S.ppm -lib/X11/xblast/image/block/kick_bomb.ppm -lib/X11/xblast/image/block/lego_black.ppm -lib/X11/xblast/image/block/lego_black_O.ppm -lib/X11/xblast/image/block/lego_floor.ppm -lib/X11/xblast/image/block/lego_floor_S.ppm -lib/X11/xblast/image/block/lego_white.ppm -lib/X11/xblast/image/block/life.ppm -lib/X11/xblast/image/block/light_house.ppm -lib/X11/xblast/image/block/light_house_O.ppm -lib/X11/xblast/image/block/mayhem.ppm -lib/X11/xblast/image/block/morph.ppm -lib/X11/xblast/image/block/mr_beam_bear.ppm -lib/X11/xblast/image/block/mr_beam_bear_O.ppm -lib/X11/xblast/image/block/mr_beam_free.ppm -lib/X11/xblast/image/block/mr_beam_tv.ppm -lib/X11/xblast/image/block/multiple.ppm -lib/X11/xblast/image/block/napalm.ppm -lib/X11/xblast/image/block/poison.ppm -lib/X11/xblast/image/block/pow.ppm -lib/X11/xblast/image/block/pumpkin.ppm -lib/X11/xblast/image/block/pumpkin_O.ppm -lib/X11/xblast/image/block/pyramid.ppm -lib/X11/xblast/image/block/pyramid_R.ppm -lib/X11/xblast/image/block/q3a_beam.ppm -lib/X11/xblast/image/block/r_i_p.ppm -lib/X11/xblast/image/block/r_i_p_R.ppm -lib/X11/xblast/image/block/range.ppm -lib/X11/xblast/image/block/remote_control.ppm -lib/X11/xblast/image/block/rock_floor.ppm -lib/X11/xblast/image/block/rock_floor_S.ppm -lib/X11/xblast/image/block/score_drop.ppm -lib/X11/xblast/image/block/score_floor.ppm -lib/X11/xblast/image/block/score_left_down.ppm -lib/X11/xblast/image/block/score_left_up.ppm -lib/X11/xblast/image/block/score_mid_down.ppm -lib/X11/xblast/image/block/score_mid_up.ppm -lib/X11/xblast/image/block/score_right_down.ppm -lib/X11/xblast/image/block/score_right_up.ppm -lib/X11/xblast/image/block/score_step.ppm -lib/X11/xblast/image/block/slow.ppm -lib/X11/xblast/image/block/speed.ppm -lib/X11/xblast/image/block/sphere_dark.ppm -lib/X11/xblast/image/block/sphere_half.ppm -lib/X11/xblast/image/block/sphere_half_S.ppm -lib/X11/xblast/image/block/sphere_light.ppm -lib/X11/xblast/image/block/sphere_light_O.ppm -lib/X11/xblast/image/block/syringe.ppm -lib/X11/xblast/image/block/temple.ppm -lib/X11/xblast/image/block/trap.ppm -lib/X11/xblast/image/block/triangle_bomb.ppm -lib/X11/xblast/image/block/uparrow.ppm -lib/X11/xblast/image/block/wall.ppm -lib/X11/xblast/image/block/wall_R.ppm -lib/X11/xblast/image/block/weight.ppm -lib/X11/xblast/image/block/weight_R.ppm -lib/X11/xblast/image/explosion/bomb_0.pbm -lib/X11/xblast/image/explosion/bomb_0.ppm -lib/X11/xblast/image/explosion/bomb_1.pbm -lib/X11/xblast/image/explosion/bomb_1.ppm -lib/X11/xblast/image/explosion/bomb_10.pbm -lib/X11/xblast/image/explosion/bomb_10.ppm -lib/X11/xblast/image/explosion/bomb_11.pbm -lib/X11/xblast/image/explosion/bomb_11.ppm -lib/X11/xblast/image/explosion/bomb_12.pbm -lib/X11/xblast/image/explosion/bomb_12.ppm -lib/X11/xblast/image/explosion/bomb_13.pbm -lib/X11/xblast/image/explosion/bomb_13.ppm -lib/X11/xblast/image/explosion/bomb_14.pbm -lib/X11/xblast/image/explosion/bomb_14.ppm -lib/X11/xblast/image/explosion/bomb_15.pbm -lib/X11/xblast/image/explosion/bomb_15.ppm -lib/X11/xblast/image/explosion/bomb_2.pbm -lib/X11/xblast/image/explosion/bomb_2.ppm -lib/X11/xblast/image/explosion/bomb_3.pbm -lib/X11/xblast/image/explosion/bomb_3.ppm -lib/X11/xblast/image/explosion/bomb_4.pbm -lib/X11/xblast/image/explosion/bomb_4.ppm -lib/X11/xblast/image/explosion/bomb_5.pbm -lib/X11/xblast/image/explosion/bomb_5.ppm -lib/X11/xblast/image/explosion/bomb_6.pbm -lib/X11/xblast/image/explosion/bomb_6.ppm -lib/X11/xblast/image/explosion/bomb_7.pbm -lib/X11/xblast/image/explosion/bomb_7.ppm -lib/X11/xblast/image/explosion/bomb_8.pbm -lib/X11/xblast/image/explosion/bomb_8.ppm -lib/X11/xblast/image/explosion/bomb_9.pbm -lib/X11/xblast/image/explosion/bomb_9.ppm -lib/X11/xblast/image/explosion/bomb_x.pbm -lib/X11/xblast/image/explosion/bomb_x.ppm -lib/X11/xblast/image/explosion/expl00.pbm -lib/X11/xblast/image/explosion/expl00.ppm -lib/X11/xblast/image/explosion/expl00_mask.pbm -lib/X11/xblast/image/explosion/expl01.pbm -lib/X11/xblast/image/explosion/expl01.ppm -lib/X11/xblast/image/explosion/expl01_mask.pbm -lib/X11/xblast/image/explosion/expl02.pbm -lib/X11/xblast/image/explosion/expl02.ppm -lib/X11/xblast/image/explosion/expl02_mask.pbm -lib/X11/xblast/image/explosion/expl03.pbm -lib/X11/xblast/image/explosion/expl03.ppm -lib/X11/xblast/image/explosion/expl03_mask.pbm -lib/X11/xblast/image/explosion/expl04.pbm -lib/X11/xblast/image/explosion/expl04.ppm -lib/X11/xblast/image/explosion/expl04_mask.pbm -lib/X11/xblast/image/explosion/expl05.pbm -lib/X11/xblast/image/explosion/expl05.ppm -lib/X11/xblast/image/explosion/expl05_mask.pbm -lib/X11/xblast/image/explosion/expl06.pbm -lib/X11/xblast/image/explosion/expl06.ppm -lib/X11/xblast/image/explosion/expl06_mask.pbm -lib/X11/xblast/image/explosion/expl07.pbm -lib/X11/xblast/image/explosion/expl07.ppm -lib/X11/xblast/image/explosion/expl07_mask.pbm -lib/X11/xblast/image/explosion/expl08.pbm -lib/X11/xblast/image/explosion/expl08.ppm -lib/X11/xblast/image/explosion/expl08_mask.pbm -lib/X11/xblast/image/explosion/expl09.pbm -lib/X11/xblast/image/explosion/expl09.ppm -lib/X11/xblast/image/explosion/expl09_mask.pbm -lib/X11/xblast/image/explosion/expl0a.pbm -lib/X11/xblast/image/explosion/expl0a.ppm -lib/X11/xblast/image/explosion/expl0a_mask.pbm -lib/X11/xblast/image/explosion/expl0b.pbm -lib/X11/xblast/image/explosion/expl0b.ppm -lib/X11/xblast/image/explosion/expl0b_mask.pbm -lib/X11/xblast/image/explosion/expl0c.pbm -lib/X11/xblast/image/explosion/expl0c.ppm -lib/X11/xblast/image/explosion/expl0c_mask.pbm -lib/X11/xblast/image/explosion/expl0d.pbm -lib/X11/xblast/image/explosion/expl0d.ppm -lib/X11/xblast/image/explosion/expl0d_mask.pbm -lib/X11/xblast/image/explosion/expl0e.pbm -lib/X11/xblast/image/explosion/expl0e.ppm -lib/X11/xblast/image/explosion/expl0e_mask.pbm -lib/X11/xblast/image/explosion/expl0f.pbm -lib/X11/xblast/image/explosion/expl0f.ppm -lib/X11/xblast/image/explosion/expl0f_mask.pbm -lib/X11/xblast/image/explosion/mini_0.pbm -lib/X11/xblast/image/explosion/mini_0.ppm -lib/X11/xblast/image/explosion/mini_1.pbm -lib/X11/xblast/image/explosion/mini_1.ppm -lib/X11/xblast/image/explosion/mini_10.pbm -lib/X11/xblast/image/explosion/mini_10.ppm -lib/X11/xblast/image/explosion/mini_11.pbm -lib/X11/xblast/image/explosion/mini_11.ppm -lib/X11/xblast/image/explosion/mini_12.pbm -lib/X11/xblast/image/explosion/mini_12.ppm -lib/X11/xblast/image/explosion/mini_13.pbm -lib/X11/xblast/image/explosion/mini_13.ppm -lib/X11/xblast/image/explosion/mini_14.pbm -lib/X11/xblast/image/explosion/mini_14.ppm -lib/X11/xblast/image/explosion/mini_15.pbm -lib/X11/xblast/image/explosion/mini_15.ppm -lib/X11/xblast/image/explosion/mini_2.pbm -lib/X11/xblast/image/explosion/mini_2.ppm -lib/X11/xblast/image/explosion/mini_3.pbm -lib/X11/xblast/image/explosion/mini_3.ppm -lib/X11/xblast/image/explosion/mini_4.pbm -lib/X11/xblast/image/explosion/mini_4.ppm -lib/X11/xblast/image/explosion/mini_5.pbm -lib/X11/xblast/image/explosion/mini_5.ppm -lib/X11/xblast/image/explosion/mini_6.pbm -lib/X11/xblast/image/explosion/mini_6.ppm -lib/X11/xblast/image/explosion/mini_7.pbm -lib/X11/xblast/image/explosion/mini_7.ppm -lib/X11/xblast/image/explosion/mini_8.pbm -lib/X11/xblast/image/explosion/mini_8.ppm -lib/X11/xblast/image/explosion/mini_9.pbm -lib/X11/xblast/image/explosion/mini_9.ppm -lib/X11/xblast/image/explosion/mini_x.pbm -lib/X11/xblast/image/explosion/mini_x.ppm -lib/X11/xblast/image/misc/text_bg.ppm -lib/X11/xblast/image/misc/text_fg.ppm -lib/X11/xblast/image/misc/title.ppm -lib/X11/xblast/image/score/led_off.ppm -lib/X11/xblast/image/score/led_on.ppm -lib/X11/xblast/image/score/player.epm -lib/X11/xblast/image/score/player_dead.epm -lib/X11/xblast/image/score/player_sick.epm -lib/X11/xblast/image/score/text_left.ppm -lib/X11/xblast/image/score/text_middle.ppm -lib/X11/xblast/image/score/text_right.ppm -lib/X11/xblast/image/score/tile_void.ppm -lib/X11/xblast/image/sprite/fat_B.epm -lib/X11/xblast/image/sprite/fat_B.pbm -lib/X11/xblast/image/sprite/fat_DD.epm -lib/X11/xblast/image/sprite/fat_DD.pbm -lib/X11/xblast/image/sprite/fat_DL.epm -lib/X11/xblast/image/sprite/fat_DL.pbm -lib/X11/xblast/image/sprite/fat_DR.epm -lib/X11/xblast/image/sprite/fat_DR.pbm -lib/X11/xblast/image/sprite/fat_DU.epm -lib/X11/xblast/image/sprite/fat_DU.pbm -lib/X11/xblast/image/sprite/fat_D_0.epm -lib/X11/xblast/image/sprite/fat_D_0.pbm -lib/X11/xblast/image/sprite/fat_D_1.epm -lib/X11/xblast/image/sprite/fat_D_1.pbm -lib/X11/xblast/image/sprite/fat_D_2.epm -lib/X11/xblast/image/sprite/fat_D_2.pbm -lib/X11/xblast/image/sprite/fat_D_3.epm -lib/X11/xblast/image/sprite/fat_D_3.pbm -lib/X11/xblast/image/sprite/fat_D_S.epm -lib/X11/xblast/image/sprite/fat_D_S.pbm -lib/X11/xblast/image/sprite/fat_L.epm -lib/X11/xblast/image/sprite/fat_L.pbm -lib/X11/xblast/image/sprite/fat_L1.epm -lib/X11/xblast/image/sprite/fat_L1.pbm -lib/X11/xblast/image/sprite/fat_L2.epm -lib/X11/xblast/image/sprite/fat_L2.pbm -lib/X11/xblast/image/sprite/fat_L_0.epm -lib/X11/xblast/image/sprite/fat_L_0.pbm -lib/X11/xblast/image/sprite/fat_L_1.epm -lib/X11/xblast/image/sprite/fat_L_1.pbm -lib/X11/xblast/image/sprite/fat_L_2.epm -lib/X11/xblast/image/sprite/fat_L_2.pbm -lib/X11/xblast/image/sprite/fat_L_3.epm -lib/X11/xblast/image/sprite/fat_L_3.pbm -lib/X11/xblast/image/sprite/fat_L_S.epm -lib/X11/xblast/image/sprite/fat_L_S.pbm -lib/X11/xblast/image/sprite/fat_R_0.epm -lib/X11/xblast/image/sprite/fat_R_0.pbm -lib/X11/xblast/image/sprite/fat_R_1.epm -lib/X11/xblast/image/sprite/fat_R_1.pbm -lib/X11/xblast/image/sprite/fat_R_2.epm -lib/X11/xblast/image/sprite/fat_R_2.pbm -lib/X11/xblast/image/sprite/fat_R_3.epm -lib/X11/xblast/image/sprite/fat_R_3.pbm -lib/X11/xblast/image/sprite/fat_R_S.epm -lib/X11/xblast/image/sprite/fat_R_S.pbm -lib/X11/xblast/image/sprite/fat_U_0.epm -lib/X11/xblast/image/sprite/fat_U_0.pbm -lib/X11/xblast/image/sprite/fat_U_1.epm -lib/X11/xblast/image/sprite/fat_U_1.pbm -lib/X11/xblast/image/sprite/fat_U_2.epm -lib/X11/xblast/image/sprite/fat_U_2.pbm -lib/X11/xblast/image/sprite/fat_U_3.epm -lib/X11/xblast/image/sprite/fat_U_3.pbm -lib/X11/xblast/image/sprite/fat_U_S.epm -lib/X11/xblast/image/sprite/fat_U_S.pbm -lib/X11/xblast/image/sprite/fat_W.epm -lib/X11/xblast/image/sprite/fat_W.pbm -lib/X11/xblast/image/sprite/fat_W2.epm -lib/X11/xblast/image/sprite/fat_W2.pbm -lib/X11/xblast/image/sprite/fat_W3.epm -lib/X11/xblast/image/sprite/fat_W3.pbm -lib/X11/xblast/image/sprite/girl_B.epm -lib/X11/xblast/image/sprite/girl_B.pbm -lib/X11/xblast/image/sprite/girl_DD.epm -lib/X11/xblast/image/sprite/girl_DD.pbm -lib/X11/xblast/image/sprite/girl_DL.epm -lib/X11/xblast/image/sprite/girl_DL.pbm -lib/X11/xblast/image/sprite/girl_DR.epm -lib/X11/xblast/image/sprite/girl_DR.pbm -lib/X11/xblast/image/sprite/girl_DU.epm -lib/X11/xblast/image/sprite/girl_DU.pbm -lib/X11/xblast/image/sprite/girl_D_0.epm -lib/X11/xblast/image/sprite/girl_D_0.pbm -lib/X11/xblast/image/sprite/girl_D_1.epm -lib/X11/xblast/image/sprite/girl_D_1.pbm -lib/X11/xblast/image/sprite/girl_D_2.epm -lib/X11/xblast/image/sprite/girl_D_2.pbm -lib/X11/xblast/image/sprite/girl_D_3.epm -lib/X11/xblast/image/sprite/girl_D_3.pbm -lib/X11/xblast/image/sprite/girl_D_S.epm -lib/X11/xblast/image/sprite/girl_D_S.pbm -lib/X11/xblast/image/sprite/girl_L.epm -lib/X11/xblast/image/sprite/girl_L.pbm -lib/X11/xblast/image/sprite/girl_L1.epm -lib/X11/xblast/image/sprite/girl_L1.pbm -lib/X11/xblast/image/sprite/girl_L2.epm -lib/X11/xblast/image/sprite/girl_L2.pbm -lib/X11/xblast/image/sprite/girl_L_0.epm -lib/X11/xblast/image/sprite/girl_L_0.pbm -lib/X11/xblast/image/sprite/girl_L_1.epm -lib/X11/xblast/image/sprite/girl_L_1.pbm -lib/X11/xblast/image/sprite/girl_L_2.epm -lib/X11/xblast/image/sprite/girl_L_2.pbm -lib/X11/xblast/image/sprite/girl_L_3.epm -lib/X11/xblast/image/sprite/girl_L_3.pbm -lib/X11/xblast/image/sprite/girl_L_S.epm -lib/X11/xblast/image/sprite/girl_L_S.pbm -lib/X11/xblast/image/sprite/girl_R_0.epm -lib/X11/xblast/image/sprite/girl_R_0.pbm -lib/X11/xblast/image/sprite/girl_R_1.epm -lib/X11/xblast/image/sprite/girl_R_1.pbm -lib/X11/xblast/image/sprite/girl_R_2.epm -lib/X11/xblast/image/sprite/girl_R_2.pbm -lib/X11/xblast/image/sprite/girl_R_3.epm -lib/X11/xblast/image/sprite/girl_R_3.pbm -lib/X11/xblast/image/sprite/girl_R_S.epm -lib/X11/xblast/image/sprite/girl_R_S.pbm -lib/X11/xblast/image/sprite/girl_U_0.epm -lib/X11/xblast/image/sprite/girl_U_0.pbm -lib/X11/xblast/image/sprite/girl_U_1.epm -lib/X11/xblast/image/sprite/girl_U_1.pbm -lib/X11/xblast/image/sprite/girl_U_2.epm -lib/X11/xblast/image/sprite/girl_U_2.pbm -lib/X11/xblast/image/sprite/girl_U_3.epm -lib/X11/xblast/image/sprite/girl_U_3.pbm -lib/X11/xblast/image/sprite/girl_U_S.epm -lib/X11/xblast/image/sprite/girl_U_S.pbm -lib/X11/xblast/image/sprite/girl_W.epm -lib/X11/xblast/image/sprite/girl_W.pbm -lib/X11/xblast/image/sprite/girl_W2.epm -lib/X11/xblast/image/sprite/girl_W2.pbm -lib/X11/xblast/image/sprite/girl_W3.epm -lib/X11/xblast/image/sprite/girl_W3.pbm -lib/X11/xblast/image/sprite/morph.pbm -lib/X11/xblast/image/sprite/morph.ppm -lib/X11/xblast/image/sprite/normal_B.epm -lib/X11/xblast/image/sprite/normal_B.pbm -lib/X11/xblast/image/sprite/normal_DD.epm -lib/X11/xblast/image/sprite/normal_DD.pbm -lib/X11/xblast/image/sprite/normal_DL.epm -lib/X11/xblast/image/sprite/normal_DL.pbm -lib/X11/xblast/image/sprite/normal_DR.epm -lib/X11/xblast/image/sprite/normal_DR.pbm -lib/X11/xblast/image/sprite/normal_DU.epm -lib/X11/xblast/image/sprite/normal_DU.pbm -lib/X11/xblast/image/sprite/normal_D_0.epm -lib/X11/xblast/image/sprite/normal_D_0.pbm -lib/X11/xblast/image/sprite/normal_D_1.epm -lib/X11/xblast/image/sprite/normal_D_1.pbm -lib/X11/xblast/image/sprite/normal_D_2.epm -lib/X11/xblast/image/sprite/normal_D_2.pbm -lib/X11/xblast/image/sprite/normal_D_3.epm -lib/X11/xblast/image/sprite/normal_D_3.pbm -lib/X11/xblast/image/sprite/normal_D_S.epm -lib/X11/xblast/image/sprite/normal_D_S.pbm -lib/X11/xblast/image/sprite/normal_L.epm -lib/X11/xblast/image/sprite/normal_L.pbm -lib/X11/xblast/image/sprite/normal_L1.epm -lib/X11/xblast/image/sprite/normal_L1.pbm -lib/X11/xblast/image/sprite/normal_L2.epm -lib/X11/xblast/image/sprite/normal_L2.pbm -lib/X11/xblast/image/sprite/normal_L_0.epm -lib/X11/xblast/image/sprite/normal_L_0.pbm -lib/X11/xblast/image/sprite/normal_L_1.epm -lib/X11/xblast/image/sprite/normal_L_1.pbm -lib/X11/xblast/image/sprite/normal_L_2.epm -lib/X11/xblast/image/sprite/normal_L_2.pbm -lib/X11/xblast/image/sprite/normal_L_3.epm -lib/X11/xblast/image/sprite/normal_L_3.pbm -lib/X11/xblast/image/sprite/normal_L_S.epm -lib/X11/xblast/image/sprite/normal_L_S.pbm -lib/X11/xblast/image/sprite/normal_R_0.epm -lib/X11/xblast/image/sprite/normal_R_0.pbm -lib/X11/xblast/image/sprite/normal_R_1.epm -lib/X11/xblast/image/sprite/normal_R_1.pbm -lib/X11/xblast/image/sprite/normal_R_2.epm -lib/X11/xblast/image/sprite/normal_R_2.pbm -lib/X11/xblast/image/sprite/normal_R_3.epm -lib/X11/xblast/image/sprite/normal_R_3.pbm -lib/X11/xblast/image/sprite/normal_R_S.epm -lib/X11/xblast/image/sprite/normal_R_S.pbm -lib/X11/xblast/image/sprite/normal_U_0.epm -lib/X11/xblast/image/sprite/normal_U_0.pbm -lib/X11/xblast/image/sprite/normal_U_1.epm -lib/X11/xblast/image/sprite/normal_U_1.pbm -lib/X11/xblast/image/sprite/normal_U_2.epm -lib/X11/xblast/image/sprite/normal_U_2.pbm -lib/X11/xblast/image/sprite/normal_U_3.epm -lib/X11/xblast/image/sprite/normal_U_3.pbm -lib/X11/xblast/image/sprite/normal_U_S.epm -lib/X11/xblast/image/sprite/normal_U_S.pbm -lib/X11/xblast/image/sprite/normal_W.epm -lib/X11/xblast/image/sprite/normal_W.pbm -lib/X11/xblast/image/sprite/normal_W2.epm -lib/X11/xblast/image/sprite/normal_W2.pbm -lib/X11/xblast/image/sprite/normal_W3.epm -lib/X11/xblast/image/sprite/normal_W3.pbm -lib/X11/xblast/image/sprite/skel_D.pbm -lib/X11/xblast/image/sprite/skel_D.ppm -lib/X11/xblast/image/sprite/skel_L.pbm -lib/X11/xblast/image/sprite/skel_L.ppm -lib/X11/xblast/image/sprite/skel_R.pbm -lib/X11/xblast/image/sprite/skel_R.ppm -lib/X11/xblast/image/sprite/skel_U.pbm -lib/X11/xblast/image/sprite/skel_U.ppm -lib/X11/xblast/image/sprite/skull_B.epm -lib/X11/xblast/image/sprite/skull_B.pbm -lib/X11/xblast/image/sprite/skull_DD.epm -lib/X11/xblast/image/sprite/skull_DD.pbm -lib/X11/xblast/image/sprite/skull_DL.epm -lib/X11/xblast/image/sprite/skull_DL.pbm -lib/X11/xblast/image/sprite/skull_DR.epm -lib/X11/xblast/image/sprite/skull_DR.pbm -lib/X11/xblast/image/sprite/skull_DU.epm -lib/X11/xblast/image/sprite/skull_DU.pbm -lib/X11/xblast/image/sprite/skull_D_0.epm -lib/X11/xblast/image/sprite/skull_D_0.pbm -lib/X11/xblast/image/sprite/skull_D_1.epm -lib/X11/xblast/image/sprite/skull_D_1.pbm -lib/X11/xblast/image/sprite/skull_D_2.epm -lib/X11/xblast/image/sprite/skull_D_2.pbm -lib/X11/xblast/image/sprite/skull_D_3.epm -lib/X11/xblast/image/sprite/skull_D_3.pbm -lib/X11/xblast/image/sprite/skull_D_S.epm -lib/X11/xblast/image/sprite/skull_D_S.pbm -lib/X11/xblast/image/sprite/skull_L.epm -lib/X11/xblast/image/sprite/skull_L.pbm -lib/X11/xblast/image/sprite/skull_L1.epm -lib/X11/xblast/image/sprite/skull_L1.pbm -lib/X11/xblast/image/sprite/skull_L2.epm -lib/X11/xblast/image/sprite/skull_L2.pbm -lib/X11/xblast/image/sprite/skull_L_0.epm -lib/X11/xblast/image/sprite/skull_L_0.pbm -lib/X11/xblast/image/sprite/skull_L_1.epm -lib/X11/xblast/image/sprite/skull_L_1.pbm -lib/X11/xblast/image/sprite/skull_L_2.epm -lib/X11/xblast/image/sprite/skull_L_2.pbm -lib/X11/xblast/image/sprite/skull_L_3.epm -lib/X11/xblast/image/sprite/skull_L_3.pbm -lib/X11/xblast/image/sprite/skull_L_S.epm -lib/X11/xblast/image/sprite/skull_L_S.pbm -lib/X11/xblast/image/sprite/skull_R_0.epm -lib/X11/xblast/image/sprite/skull_R_0.pbm -lib/X11/xblast/image/sprite/skull_R_1.epm -lib/X11/xblast/image/sprite/skull_R_1.pbm -lib/X11/xblast/image/sprite/skull_R_2.epm -lib/X11/xblast/image/sprite/skull_R_2.pbm -lib/X11/xblast/image/sprite/skull_R_3.epm -lib/X11/xblast/image/sprite/skull_R_3.pbm -lib/X11/xblast/image/sprite/skull_R_S.epm -lib/X11/xblast/image/sprite/skull_R_S.pbm -lib/X11/xblast/image/sprite/skull_U_0.epm -lib/X11/xblast/image/sprite/skull_U_0.pbm -lib/X11/xblast/image/sprite/skull_U_1.epm -lib/X11/xblast/image/sprite/skull_U_1.pbm -lib/X11/xblast/image/sprite/skull_U_2.epm -lib/X11/xblast/image/sprite/skull_U_2.pbm -lib/X11/xblast/image/sprite/skull_U_3.epm -lib/X11/xblast/image/sprite/skull_U_3.pbm -lib/X11/xblast/image/sprite/skull_U_S.epm -lib/X11/xblast/image/sprite/skull_U_S.pbm -lib/X11/xblast/image/sprite/skull_W.epm -lib/X11/xblast/image/sprite/skull_W.pbm -lib/X11/xblast/image/sprite/skull_W2.epm -lib/X11/xblast/image/sprite/skull_W2.pbm -lib/X11/xblast/image/sprite/skull_W3.epm -lib/X11/xblast/image/sprite/skull_W3.pbm -lib/X11/xblast/image/sprite/tall_B.epm -lib/X11/xblast/image/sprite/tall_B.pbm -lib/X11/xblast/image/sprite/tall_DD.epm -lib/X11/xblast/image/sprite/tall_DD.pbm -lib/X11/xblast/image/sprite/tall_DL.epm -lib/X11/xblast/image/sprite/tall_DL.pbm -lib/X11/xblast/image/sprite/tall_DR.epm -lib/X11/xblast/image/sprite/tall_DR.pbm -lib/X11/xblast/image/sprite/tall_DU.epm -lib/X11/xblast/image/sprite/tall_DU.pbm -lib/X11/xblast/image/sprite/tall_D_0.epm -lib/X11/xblast/image/sprite/tall_D_0.pbm -lib/X11/xblast/image/sprite/tall_D_1.epm -lib/X11/xblast/image/sprite/tall_D_1.pbm -lib/X11/xblast/image/sprite/tall_D_2.epm -lib/X11/xblast/image/sprite/tall_D_2.pbm -lib/X11/xblast/image/sprite/tall_D_3.epm -lib/X11/xblast/image/sprite/tall_D_3.pbm -lib/X11/xblast/image/sprite/tall_D_S.epm -lib/X11/xblast/image/sprite/tall_D_S.pbm -lib/X11/xblast/image/sprite/tall_L.epm -lib/X11/xblast/image/sprite/tall_L.pbm -lib/X11/xblast/image/sprite/tall_L1.epm -lib/X11/xblast/image/sprite/tall_L1.pbm -lib/X11/xblast/image/sprite/tall_L2.epm -lib/X11/xblast/image/sprite/tall_L2.pbm -lib/X11/xblast/image/sprite/tall_L_0.epm -lib/X11/xblast/image/sprite/tall_L_0.pbm -lib/X11/xblast/image/sprite/tall_L_1.epm -lib/X11/xblast/image/sprite/tall_L_1.pbm -lib/X11/xblast/image/sprite/tall_L_2.epm -lib/X11/xblast/image/sprite/tall_L_2.pbm -lib/X11/xblast/image/sprite/tall_L_3.epm -lib/X11/xblast/image/sprite/tall_L_3.pbm -lib/X11/xblast/image/sprite/tall_L_S.epm -lib/X11/xblast/image/sprite/tall_L_S.pbm -lib/X11/xblast/image/sprite/tall_R_0.epm -lib/X11/xblast/image/sprite/tall_R_0.pbm -lib/X11/xblast/image/sprite/tall_R_1.epm -lib/X11/xblast/image/sprite/tall_R_1.pbm -lib/X11/xblast/image/sprite/tall_R_2.epm -lib/X11/xblast/image/sprite/tall_R_2.pbm -lib/X11/xblast/image/sprite/tall_R_3.epm -lib/X11/xblast/image/sprite/tall_R_3.pbm -lib/X11/xblast/image/sprite/tall_R_S.epm -lib/X11/xblast/image/sprite/tall_R_S.pbm -lib/X11/xblast/image/sprite/tall_U_0.epm -lib/X11/xblast/image/sprite/tall_U_0.pbm -lib/X11/xblast/image/sprite/tall_U_1.epm -lib/X11/xblast/image/sprite/tall_U_1.pbm -lib/X11/xblast/image/sprite/tall_U_2.epm -lib/X11/xblast/image/sprite/tall_U_2.pbm -lib/X11/xblast/image/sprite/tall_U_3.epm -lib/X11/xblast/image/sprite/tall_U_3.pbm -lib/X11/xblast/image/sprite/tall_U_S.epm -lib/X11/xblast/image/sprite/tall_U_S.pbm -lib/X11/xblast/image/sprite/tall_W.epm -lib/X11/xblast/image/sprite/tall_W.pbm -lib/X11/xblast/image/sprite/tall_W2.epm -lib/X11/xblast/image/sprite/tall_W2.pbm -lib/X11/xblast/image/sprite/tall_W3.epm -lib/X11/xblast/image/sprite/tall_W3.pbm -lib/X11/xblast/sounds/xb_appl.raw -lib/X11/xblast/sounds/xb_bad.raw -lib/X11/xblast/sounds/xb_bombmorph.raw -lib/X11/xblast/sounds/xb_butt.raw -lib/X11/xblast/sounds/xb_cmpnd.raw -lib/X11/xblast/sounds/xb_dead.raw -lib/X11/xblast/sounds/xb_drop.raw -lib/X11/xblast/sounds/xb_expl.raw -lib/X11/xblast/sounds/xb_haunt.raw -lib/X11/xblast/sounds/xb_intro.raw -lib/X11/xblast/sounds/xb_kick.raw -lib/X11/xblast/sounds/xb_nvis.raw -lib/X11/xblast/sounds/xb_nvnc.raw -lib/X11/xblast/sounds/xb_ouch.raw -lib/X11/xblast/sounds/xb_pump.raw -lib/X11/xblast/sounds/xb_shoot.raw -lib/X11/xblast/sounds/xb_spbmb.raw -lib/X11/xblast/sounds/xb_spir.raw -lib/X11/xblast/sounds/xb_stun.raw -lib/X11/xblast/sounds/xb_warn.raw -lib/X11/xblast/sounds/xb_whrl.raw -lib/X11/xblast/sounds/xb_won.raw -lib/X11/xblast/sounds/xbcloak.raw -lib/X11/xblast/sounds/xbcloakx.raw -lib/X11/xblast/sounds/xbdcloak.raw -lib/X11/xblast/sounds/xbfast.raw -lib/X11/xblast/sounds/xbfin.raw -lib/X11/xblast/sounds/xbfire.raw -lib/X11/xblast/sounds/xbholy.raw -lib/X11/xblast/sounds/xbinj.raw -lib/X11/xblast/sounds/xblife.raw -lib/X11/xblast/sounds/xbmbmb.raw -lib/X11/xblast/sounds/xbnbmb.raw -lib/X11/xblast/sounds/xbnkick.raw -lib/X11/xblast/sounds/xbnpmp.raw -lib/X11/xblast/sounds/xbnrc.raw -lib/X11/xblast/sounds/xbntel.raw -lib/X11/xblast/sounds/xbslay.raw -lib/X11/xblast/sounds/xbslide.raw -lib/X11/xblast/sounds/xbslow.raw -lib/X11/xblast/sounds/xbstep.raw -lib/X11/xblast/sounds/xbtele.raw -lib/X11/xblast/sounds/xbtele1.raw -lib/X11/xblast/sounds/xbtele2.raw -@dirrm lib/X11/xblast/sounds -@dirrm lib/X11/xblast/image/sprite -@dirrm lib/X11/xblast/image/score -@dirrm lib/X11/xblast/image/misc -@dirrm lib/X11/xblast/image/explosion -@dirrm lib/X11/xblast/image/block -@dirrm lib/X11/xblast/image -@dirrm lib/X11/xblast/bitmap/sprite -@dirrm lib/X11/xblast/bitmap/score -@dirrm lib/X11/xblast/bitmap/misc -@dirrm lib/X11/xblast/bitmap/explosion -@dirrm lib/X11/xblast/bitmap/block -@dirrm lib/X11/xblast/bitmap -@dirrm lib/X11/xblast +%%WITH_SOUND%%bin/xbsndsrv +share/xblast/image/block/EPFL_stop.ppm +share/xblast/image/block/air_pump.ppm +share/xblast/image/block/bomb.ppm +share/xblast/image/block/bomb_floor.ppm +share/xblast/image/block/bomb_floor_X.ppm +share/xblast/image/block/bomb_floor_black.ppm +share/xblast/image/block/bomb_floor_black_X.ppm +share/xblast/image/block/book_shelf.ppm +share/xblast/image/block/box.ppm +share/xblast/image/block/brick_O.ppm +share/xblast/image/block/bricks.ppm +share/xblast/image/block/button_floor.ppm +share/xblast/image/block/button_floor_S.ppm +share/xblast/image/block/button_floor_X.ppm +share/xblast/image/block/check.ppm +share/xblast/image/block/check_X.ppm +share/xblast/image/block/cheese.ppm +share/xblast/image/block/chess_floor.ppm +share/xblast/image/block/chess_floor_S.ppm +share/xblast/image/block/chess_floor_X.ppm +share/xblast/image/block/chess_sphere.ppm +share/xblast/image/block/chess_sphere_O.ppm +share/xblast/image/block/chest.ppm +share/xblast/image/block/chest_O.ppm +share/xblast/image/block/city_free.ppm +share/xblast/image/block/city_free_S.ppm +share/xblast/image/block/city_free_X.ppm +share/xblast/image/block/city_rip.ppm +share/xblast/image/block/city_rip_R.ppm +share/xblast/image/block/cloak.ppm +share/xblast/image/block/construction.ppm +share/xblast/image/block/control_alpha.ppm +share/xblast/image/block/control_num.ppm +share/xblast/image/block/d_world.ppm +share/xblast/image/block/d_world_extra.ppm +share/xblast/image/block/daleif.ppm +share/xblast/image/block/dark_block.ppm +share/xblast/image/block/dark_block_R.ppm +share/xblast/image/block/dark_block_X.ppm +share/xblast/image/block/dark_house.ppm +share/xblast/image/block/dark_house_R.ppm +share/xblast/image/block/dark_way.ppm +share/xblast/image/block/dark_way_S.ppm +share/xblast/image/block/dark_way_X.ppm +share/xblast/image/block/display.ppm +share/xblast/image/block/doom.ppm +share/xblast/image/block/double_bomb.ppm +share/xblast/image/block/downarrow.ppm +share/xblast/image/block/electrify.ppm +share/xblast/image/block/evilgrail.ppm +share/xblast/image/block/expl0f.ppm +share/xblast/image/block/extra.ppm +share/xblast/image/block/extra_O.ppm +share/xblast/image/block/extraelectrify.ppm +share/xblast/image/block/extraghost.ppm +share/xblast/image/block/extrathrough.ppm +share/xblast/image/block/fart.ppm +share/xblast/image/block/firecracker.ppm +share/xblast/image/block/flowers.ppm +share/xblast/image/block/frogger.ppm +share/xblast/image/block/ghost.ppm +share/xblast/image/block/ghost_X.ppm +share/xblast/image/block/ghost_ci.ppm +share/xblast/image/block/ghost_ci_R.ppm +share/xblast/image/block/ghost_sq.ppm +share/xblast/image/block/ghost_sq_R.ppm +share/xblast/image/block/hex.ppm +share/xblast/image/block/hex_X.ppm +share/xblast/image/block/hex_extra.ppm +share/xblast/image/block/hex_extra_O.ppm +share/xblast/image/block/hex_wall.ppm +share/xblast/image/block/hole_floor.ppm +share/xblast/image/block/hole_floor_X.ppm +share/xblast/image/block/holygrail.ppm +share/xblast/image/block/ignite.ppm +share/xblast/image/block/invincible.ppm +share/xblast/image/block/iron_floor.ppm +share/xblast/image/block/iron_floor_S.ppm +share/xblast/image/block/iron_floor_X.ppm +share/xblast/image/block/jizz.ppm +share/xblast/image/block/jizz_extra.ppm +share/xblast/image/block/jizz_extra_O.ppm +share/xblast/image/block/jump.ppm +share/xblast/image/block/karo_dark.ppm +share/xblast/image/block/karo_dark_S.ppm +share/xblast/image/block/karo_dark_X.ppm +share/xblast/image/block/karo_light.ppm +share/xblast/image/block/karo_light_S.ppm +share/xblast/image/block/karo_light_X.ppm +share/xblast/image/block/kick_bomb.ppm +share/xblast/image/block/lego_black.ppm +share/xblast/image/block/lego_black_O.ppm +share/xblast/image/block/lego_floor.ppm +share/xblast/image/block/lego_floor_S.ppm +share/xblast/image/block/lego_floor_X.ppm +share/xblast/image/block/lego_white.ppm +share/xblast/image/block/life.ppm +share/xblast/image/block/light_house.ppm +share/xblast/image/block/light_house_O.ppm +share/xblast/image/block/mayhem.ppm +share/xblast/image/block/menu_bottom.ppm +share/xblast/image/block/menu_center.ppm +share/xblast/image/block/menu_join.ppm +share/xblast/image/block/menu_left.ppm +share/xblast/image/block/menu_left_down.ppm +share/xblast/image/block/menu_left_up.ppm +share/xblast/image/block/menu_list_center.ppm +share/xblast/image/block/menu_list_join.ppm +share/xblast/image/block/menu_list_left.ppm +share/xblast/image/block/menu_list_right.ppm +share/xblast/image/block/menu_podest.ppm +share/xblast/image/block/menu_right.ppm +share/xblast/image/block/menu_right_down.ppm +share/xblast/image/block/menu_right_up.ppm +share/xblast/image/block/menu_top.ppm +share/xblast/image/block/menu_vertical.ppm +share/xblast/image/block/mines.ppm +share/xblast/image/block/mines_b.ppm +share/xblast/image/block/morph.ppm +share/xblast/image/block/mr_beam_bear.ppm +share/xblast/image/block/mr_beam_bear_O.ppm +share/xblast/image/block/mr_beam_free.ppm +share/xblast/image/block/mr_beam_free_X.ppm +share/xblast/image/block/mr_beam_tv.ppm +share/xblast/image/block/multiple.ppm +share/xblast/image/block/napalm.ppm +share/xblast/image/block/nin_1.ppm +share/xblast/image/block/nin_2.ppm +share/xblast/image/block/peace.ppm +share/xblast/image/block/phantom.ppm +share/xblast/image/block/phoenix.ppm +share/xblast/image/block/poison.ppm +share/xblast/image/block/pow.ppm +share/xblast/image/block/pumpkin.ppm +share/xblast/image/block/pumpkin_O.ppm +share/xblast/image/block/pyramid.ppm +share/xblast/image/block/pyramid_R.ppm +share/xblast/image/block/q3a_beam.ppm +share/xblast/image/block/r_i_p.ppm +share/xblast/image/block/r_i_p_R.ppm +share/xblast/image/block/radio_active.ppm +share/xblast/image/block/range.ppm +share/xblast/image/block/remote_control.ppm +share/xblast/image/block/rock_floor.ppm +share/xblast/image/block/rock_floor_S.ppm +share/xblast/image/block/rock_floor_X.ppm +share/xblast/image/block/score_drop.ppm +share/xblast/image/block/score_floor.ppm +share/xblast/image/block/score_left_down.ppm +share/xblast/image/block/score_left_up.ppm +share/xblast/image/block/score_mid_down.ppm +share/xblast/image/block/score_mid_up.ppm +share/xblast/image/block/score_pipe_begin.ppm +share/xblast/image/block/score_pipe_end.ppm +share/xblast/image/block/score_pipe_floor.ppm +share/xblast/image/block/score_pipe_mid.ppm +share/xblast/image/block/score_right_down.ppm +share/xblast/image/block/score_right_up.ppm +share/xblast/image/block/score_step.ppm +share/xblast/image/block/search.ppm +share/xblast/image/block/slow.ppm +share/xblast/image/block/smiley.ppm +share/xblast/image/block/smiley_O.ppm +share/xblast/image/block/snipe.ppm +share/xblast/image/block/speed.ppm +share/xblast/image/block/sphere_dark.ppm +share/xblast/image/block/sphere_half.ppm +share/xblast/image/block/sphere_half_S.ppm +share/xblast/image/block/sphere_half_X.ppm +share/xblast/image/block/sphere_light.ppm +share/xblast/image/block/sphere_light_O.ppm +share/xblast/image/block/stars.ppm +share/xblast/image/block/steal.ppm +share/xblast/image/block/swapcolor.ppm +share/xblast/image/block/swapposition.ppm +share/xblast/image/block/swastika.ppm +share/xblast/image/block/swastika_O.ppm +share/xblast/image/block/syringe.ppm +share/xblast/image/block/temple.ppm +share/xblast/image/block/three_bomb.ppm +share/xblast/image/block/trap.ppm +share/xblast/image/block/triangle_bomb.ppm +share/xblast/image/block/unknown-file.pbm +share/xblast/image/block/unknown-file.ppm +share/xblast/image/block/uparrow.ppm +share/xblast/image/block/wall.ppm +share/xblast/image/block/wall_R.ppm +share/xblast/image/block/weight.ppm +share/xblast/image/block/weight_R.ppm +share/xblast/image/block/win_95_logo.ppm +share/xblast/image/block/x_files.ppm +share/xblast/image/block/x_files_R.ppm +share/xblast/image/block/zoso_extra.ppm +share/xblast/image/block/zoso_extra_O.ppm +share/xblast/image/explosion/bomb_0.pbm +share/xblast/image/explosion/bomb_0.ppm +share/xblast/image/explosion/bomb_1.pbm +share/xblast/image/explosion/bomb_1.ppm +share/xblast/image/explosion/bomb_10.pbm +share/xblast/image/explosion/bomb_10.ppm +share/xblast/image/explosion/bomb_11.pbm +share/xblast/image/explosion/bomb_11.ppm +share/xblast/image/explosion/bomb_12.pbm +share/xblast/image/explosion/bomb_12.ppm +share/xblast/image/explosion/bomb_13.pbm +share/xblast/image/explosion/bomb_13.ppm +share/xblast/image/explosion/bomb_14.pbm +share/xblast/image/explosion/bomb_14.ppm +share/xblast/image/explosion/bomb_15.pbm +share/xblast/image/explosion/bomb_15.ppm +share/xblast/image/explosion/bomb_2.pbm +share/xblast/image/explosion/bomb_2.ppm +share/xblast/image/explosion/bomb_3.pbm +share/xblast/image/explosion/bomb_3.ppm +share/xblast/image/explosion/bomb_4.pbm +share/xblast/image/explosion/bomb_4.ppm +share/xblast/image/explosion/bomb_5.pbm +share/xblast/image/explosion/bomb_5.ppm +share/xblast/image/explosion/bomb_6.pbm +share/xblast/image/explosion/bomb_6.ppm +share/xblast/image/explosion/bomb_7.pbm +share/xblast/image/explosion/bomb_7.ppm +share/xblast/image/explosion/bomb_8.pbm +share/xblast/image/explosion/bomb_8.ppm +share/xblast/image/explosion/bomb_9.pbm +share/xblast/image/explosion/bomb_9.ppm +share/xblast/image/explosion/bomb_x.pbm +share/xblast/image/explosion/bomb_x.ppm +share/xblast/image/explosion/expl.pbm +share/xblast/image/explosion/expl.ppm +share/xblast/image/explosion/expl00.pbm +share/xblast/image/explosion/expl00.ppm +share/xblast/image/explosion/expl00_mask.pbm +share/xblast/image/explosion/expl01.pbm +share/xblast/image/explosion/expl01.ppm +share/xblast/image/explosion/expl01_mask.pbm +share/xblast/image/explosion/expl02.pbm +share/xblast/image/explosion/expl02.ppm +share/xblast/image/explosion/expl02_mask.pbm +share/xblast/image/explosion/expl03.pbm +share/xblast/image/explosion/expl03.ppm +share/xblast/image/explosion/expl03_mask.pbm +share/xblast/image/explosion/expl04.pbm +share/xblast/image/explosion/expl04.ppm +share/xblast/image/explosion/expl04_mask.pbm +share/xblast/image/explosion/expl05.pbm +share/xblast/image/explosion/expl05.ppm +share/xblast/image/explosion/expl05_mask.pbm +share/xblast/image/explosion/expl06.pbm +share/xblast/image/explosion/expl06.ppm +share/xblast/image/explosion/expl06_mask.pbm +share/xblast/image/explosion/expl07.pbm +share/xblast/image/explosion/expl07.ppm +share/xblast/image/explosion/expl07_mask.pbm +share/xblast/image/explosion/expl08.pbm +share/xblast/image/explosion/expl08.ppm +share/xblast/image/explosion/expl08_mask.pbm +share/xblast/image/explosion/expl09.pbm +share/xblast/image/explosion/expl09.ppm +share/xblast/image/explosion/expl09_mask.pbm +share/xblast/image/explosion/expl0a.pbm +share/xblast/image/explosion/expl0a.ppm +share/xblast/image/explosion/expl0a_mask.pbm +share/xblast/image/explosion/expl0b.pbm +share/xblast/image/explosion/expl0b.ppm +share/xblast/image/explosion/expl0b_mask.pbm +share/xblast/image/explosion/expl0c.pbm +share/xblast/image/explosion/expl0c.ppm +share/xblast/image/explosion/expl0c_mask.pbm +share/xblast/image/explosion/expl0d.pbm +share/xblast/image/explosion/expl0d.ppm +share/xblast/image/explosion/expl0d_mask.pbm +share/xblast/image/explosion/expl0e.pbm +share/xblast/image/explosion/expl0e.ppm +share/xblast/image/explosion/expl0e_mask.pbm +share/xblast/image/explosion/expl0f.pbm +share/xblast/image/explosion/expl0f.ppm +share/xblast/image/explosion/expl0f_mask.pbm +share/xblast/image/explosion/expl10.pbm +share/xblast/image/explosion/expl10.ppm +share/xblast/image/explosion/mini_0.pbm +share/xblast/image/explosion/mini_0.ppm +share/xblast/image/explosion/mini_1.pbm +share/xblast/image/explosion/mini_1.ppm +share/xblast/image/explosion/mini_10.pbm +share/xblast/image/explosion/mini_10.ppm +share/xblast/image/explosion/mini_11.pbm +share/xblast/image/explosion/mini_11.ppm +share/xblast/image/explosion/mini_12.pbm +share/xblast/image/explosion/mini_12.ppm +share/xblast/image/explosion/mini_13.pbm +share/xblast/image/explosion/mini_13.ppm +share/xblast/image/explosion/mini_14.pbm +share/xblast/image/explosion/mini_14.ppm +share/xblast/image/explosion/mini_15.pbm +share/xblast/image/explosion/mini_15.ppm +share/xblast/image/explosion/mini_2.pbm +share/xblast/image/explosion/mini_2.ppm +share/xblast/image/explosion/mini_3.pbm +share/xblast/image/explosion/mini_3.ppm +share/xblast/image/explosion/mini_4.pbm +share/xblast/image/explosion/mini_4.ppm +share/xblast/image/explosion/mini_5.pbm +share/xblast/image/explosion/mini_5.ppm +share/xblast/image/explosion/mini_6.pbm +share/xblast/image/explosion/mini_6.ppm +share/xblast/image/explosion/mini_7.pbm +share/xblast/image/explosion/mini_7.ppm +share/xblast/image/explosion/mini_8.pbm +share/xblast/image/explosion/mini_8.ppm +share/xblast/image/explosion/mini_9.pbm +share/xblast/image/explosion/mini_9.ppm +share/xblast/image/explosion/mini_x.pbm +share/xblast/image/explosion/mini_x.ppm +share/xblast/image/misc/color.ppm +share/xblast/image/misc/icon_abort.pbm +share/xblast/image/misc/icon_abort.ppm +share/xblast/image/misc/icon_color.pbm +share/xblast/image/misc/icon_color.ppm +share/xblast/image/misc/icon_default.pbm +share/xblast/image/misc/icon_default.ppm +share/xblast/image/misc/icon_led_off.pbm +share/xblast/image/misc/icon_led_off.ppm +share/xblast/image/misc/icon_led_on.pbm +share/xblast/image/misc/icon_led_on.ppm +share/xblast/image/misc/text_bg.ppm +share/xblast/image/misc/text_fg.ppm +share/xblast/image/misc/title.ppm +share/xblast/image/score/led_off.ppm +share/xblast/image/score/led_on.ppm +share/xblast/image/score/player.epm +share/xblast/image/score/player_abort.epm +share/xblast/image/score/player_dead.epm +share/xblast/image/score/player_sick.epm +share/xblast/image/score/player_sick_abort.epm +share/xblast/image/score/text_left.ppm +share/xblast/image/score/text_middle.ppm +share/xblast/image/score/text_right.ppm +share/xblast/image/score/tile_void.ppm +share/xblast/image/sprite/cowboy_B.epm +share/xblast/image/sprite/cowboy_B.pbm +share/xblast/image/sprite/cowboy_DD.epm +share/xblast/image/sprite/cowboy_DD.pbm +share/xblast/image/sprite/cowboy_DL.epm +share/xblast/image/sprite/cowboy_DL.pbm +share/xblast/image/sprite/cowboy_DR.epm +share/xblast/image/sprite/cowboy_DR.pbm +share/xblast/image/sprite/cowboy_DU.epm +share/xblast/image/sprite/cowboy_DU.pbm +share/xblast/image/sprite/cowboy_D_0.epm +share/xblast/image/sprite/cowboy_D_0.pbm +share/xblast/image/sprite/cowboy_D_1.epm +share/xblast/image/sprite/cowboy_D_1.pbm +share/xblast/image/sprite/cowboy_D_2.epm +share/xblast/image/sprite/cowboy_D_2.pbm +share/xblast/image/sprite/cowboy_D_3.epm +share/xblast/image/sprite/cowboy_D_3.pbm +share/xblast/image/sprite/cowboy_D_S.epm +share/xblast/image/sprite/cowboy_D_S.pbm +share/xblast/image/sprite/cowboy_L.epm +share/xblast/image/sprite/cowboy_L.pbm +share/xblast/image/sprite/cowboy_L1.epm +share/xblast/image/sprite/cowboy_L1.pbm +share/xblast/image/sprite/cowboy_L2.epm +share/xblast/image/sprite/cowboy_L2.pbm +share/xblast/image/sprite/cowboy_L_0.epm +share/xblast/image/sprite/cowboy_L_0.pbm +share/xblast/image/sprite/cowboy_L_1.epm +share/xblast/image/sprite/cowboy_L_1.pbm +share/xblast/image/sprite/cowboy_L_2.epm +share/xblast/image/sprite/cowboy_L_2.pbm +share/xblast/image/sprite/cowboy_L_3.epm +share/xblast/image/sprite/cowboy_L_3.pbm +share/xblast/image/sprite/cowboy_L_S.epm +share/xblast/image/sprite/cowboy_L_S.pbm +share/xblast/image/sprite/cowboy_R_0.epm +share/xblast/image/sprite/cowboy_R_0.pbm +share/xblast/image/sprite/cowboy_R_1.epm +share/xblast/image/sprite/cowboy_R_1.pbm +share/xblast/image/sprite/cowboy_R_2.epm +share/xblast/image/sprite/cowboy_R_2.pbm +share/xblast/image/sprite/cowboy_R_3.epm +share/xblast/image/sprite/cowboy_R_3.pbm +share/xblast/image/sprite/cowboy_R_S.epm +share/xblast/image/sprite/cowboy_R_S.pbm +share/xblast/image/sprite/cowboy_U_0.epm +share/xblast/image/sprite/cowboy_U_0.pbm +share/xblast/image/sprite/cowboy_U_1.epm +share/xblast/image/sprite/cowboy_U_1.pbm +share/xblast/image/sprite/cowboy_U_2.epm +share/xblast/image/sprite/cowboy_U_2.pbm +share/xblast/image/sprite/cowboy_U_3.epm +share/xblast/image/sprite/cowboy_U_3.pbm +share/xblast/image/sprite/cowboy_U_S.epm +share/xblast/image/sprite/cowboy_U_S.pbm +share/xblast/image/sprite/cowboy_W.epm +share/xblast/image/sprite/cowboy_W.pbm +share/xblast/image/sprite/cowboy_W2.epm +share/xblast/image/sprite/cowboy_W2.pbm +share/xblast/image/sprite/cowboy_W3.epm +share/xblast/image/sprite/cowboy_W3.pbm +share/xblast/image/sprite/fat_B.epm +share/xblast/image/sprite/fat_B.pbm +share/xblast/image/sprite/fat_DD.epm +share/xblast/image/sprite/fat_DD.pbm +share/xblast/image/sprite/fat_DL.epm +share/xblast/image/sprite/fat_DL.pbm +share/xblast/image/sprite/fat_DR.epm +share/xblast/image/sprite/fat_DR.pbm +share/xblast/image/sprite/fat_DU.epm +share/xblast/image/sprite/fat_DU.pbm +share/xblast/image/sprite/fat_D_0.epm +share/xblast/image/sprite/fat_D_0.pbm +share/xblast/image/sprite/fat_D_1.epm +share/xblast/image/sprite/fat_D_1.pbm +share/xblast/image/sprite/fat_D_2.epm +share/xblast/image/sprite/fat_D_2.pbm +share/xblast/image/sprite/fat_D_3.epm +share/xblast/image/sprite/fat_D_3.pbm +share/xblast/image/sprite/fat_D_S.epm +share/xblast/image/sprite/fat_D_S.pbm +share/xblast/image/sprite/fat_L.epm +share/xblast/image/sprite/fat_L.pbm +share/xblast/image/sprite/fat_L1.epm +share/xblast/image/sprite/fat_L1.pbm +share/xblast/image/sprite/fat_L2.epm +share/xblast/image/sprite/fat_L2.pbm +share/xblast/image/sprite/fat_L_0.epm +share/xblast/image/sprite/fat_L_0.pbm +share/xblast/image/sprite/fat_L_1.epm +share/xblast/image/sprite/fat_L_1.pbm +share/xblast/image/sprite/fat_L_2.epm +share/xblast/image/sprite/fat_L_2.pbm +share/xblast/image/sprite/fat_L_3.epm +share/xblast/image/sprite/fat_L_3.pbm +share/xblast/image/sprite/fat_L_S.epm +share/xblast/image/sprite/fat_L_S.pbm +share/xblast/image/sprite/fat_R_0.epm +share/xblast/image/sprite/fat_R_0.pbm +share/xblast/image/sprite/fat_R_1.epm +share/xblast/image/sprite/fat_R_1.pbm +share/xblast/image/sprite/fat_R_2.epm +share/xblast/image/sprite/fat_R_2.pbm +share/xblast/image/sprite/fat_R_3.epm +share/xblast/image/sprite/fat_R_3.pbm +share/xblast/image/sprite/fat_R_S.epm +share/xblast/image/sprite/fat_R_S.pbm +share/xblast/image/sprite/fat_U_0.epm +share/xblast/image/sprite/fat_U_0.pbm +share/xblast/image/sprite/fat_U_1.epm +share/xblast/image/sprite/fat_U_1.pbm +share/xblast/image/sprite/fat_U_2.epm +share/xblast/image/sprite/fat_U_2.pbm +share/xblast/image/sprite/fat_U_3.epm +share/xblast/image/sprite/fat_U_3.pbm +share/xblast/image/sprite/fat_U_S.epm +share/xblast/image/sprite/fat_U_S.pbm +share/xblast/image/sprite/fat_W.epm +share/xblast/image/sprite/fat_W.pbm +share/xblast/image/sprite/fat_W2.epm +share/xblast/image/sprite/fat_W2.pbm +share/xblast/image/sprite/fat_W3.epm +share/xblast/image/sprite/fat_W3.pbm +share/xblast/image/sprite/felix_B.epm +share/xblast/image/sprite/felix_B.pbm +share/xblast/image/sprite/felix_DD.epm +share/xblast/image/sprite/felix_DD.pbm +share/xblast/image/sprite/felix_DL.epm +share/xblast/image/sprite/felix_DL.pbm +share/xblast/image/sprite/felix_DR.epm +share/xblast/image/sprite/felix_DR.pbm +share/xblast/image/sprite/felix_DU.epm +share/xblast/image/sprite/felix_DU.pbm +share/xblast/image/sprite/felix_D_0.epm +share/xblast/image/sprite/felix_D_0.pbm +share/xblast/image/sprite/felix_D_1.epm +share/xblast/image/sprite/felix_D_1.pbm +share/xblast/image/sprite/felix_D_2.epm +share/xblast/image/sprite/felix_D_2.pbm +share/xblast/image/sprite/felix_D_3.epm +share/xblast/image/sprite/felix_D_3.pbm +share/xblast/image/sprite/felix_D_S.epm +share/xblast/image/sprite/felix_D_S.pbm +share/xblast/image/sprite/felix_L.epm +share/xblast/image/sprite/felix_L.pbm +share/xblast/image/sprite/felix_L1.epm +share/xblast/image/sprite/felix_L1.pbm +share/xblast/image/sprite/felix_L2.epm +share/xblast/image/sprite/felix_L2.pbm +share/xblast/image/sprite/felix_L_0.epm +share/xblast/image/sprite/felix_L_0.pbm +share/xblast/image/sprite/felix_L_1.epm +share/xblast/image/sprite/felix_L_1.pbm +share/xblast/image/sprite/felix_L_2.epm +share/xblast/image/sprite/felix_L_2.pbm +share/xblast/image/sprite/felix_L_3.epm +share/xblast/image/sprite/felix_L_3.pbm +share/xblast/image/sprite/felix_L_S.epm +share/xblast/image/sprite/felix_L_S.pbm +share/xblast/image/sprite/felix_R_0.epm +share/xblast/image/sprite/felix_R_0.pbm +share/xblast/image/sprite/felix_R_1.epm +share/xblast/image/sprite/felix_R_1.pbm +share/xblast/image/sprite/felix_R_2.epm +share/xblast/image/sprite/felix_R_2.pbm +share/xblast/image/sprite/felix_R_3.epm +share/xblast/image/sprite/felix_R_3.pbm +share/xblast/image/sprite/felix_R_S.epm +share/xblast/image/sprite/felix_R_S.pbm +share/xblast/image/sprite/felix_U_0.epm +share/xblast/image/sprite/felix_U_0.pbm +share/xblast/image/sprite/felix_U_1.epm +share/xblast/image/sprite/felix_U_1.pbm +share/xblast/image/sprite/felix_U_2.epm +share/xblast/image/sprite/felix_U_2.pbm +share/xblast/image/sprite/felix_U_3.epm +share/xblast/image/sprite/felix_U_3.pbm +share/xblast/image/sprite/felix_U_S.epm +share/xblast/image/sprite/felix_U_S.pbm +share/xblast/image/sprite/felix_W.epm +share/xblast/image/sprite/felix_W.pbm +share/xblast/image/sprite/felix_W2.epm +share/xblast/image/sprite/felix_W2.pbm +share/xblast/image/sprite/felix_W3.epm +share/xblast/image/sprite/felix_W3.pbm +share/xblast/image/sprite/girl_B.epm +share/xblast/image/sprite/girl_B.pbm +share/xblast/image/sprite/girl_DD.epm +share/xblast/image/sprite/girl_DD.pbm +share/xblast/image/sprite/girl_DL.epm +share/xblast/image/sprite/girl_DL.pbm +share/xblast/image/sprite/girl_DR.epm +share/xblast/image/sprite/girl_DR.pbm +share/xblast/image/sprite/girl_DU.epm +share/xblast/image/sprite/girl_DU.pbm +share/xblast/image/sprite/girl_D_0.epm +share/xblast/image/sprite/girl_D_0.pbm +share/xblast/image/sprite/girl_D_1.epm +share/xblast/image/sprite/girl_D_1.pbm +share/xblast/image/sprite/girl_D_2.epm +share/xblast/image/sprite/girl_D_2.pbm +share/xblast/image/sprite/girl_D_3.epm +share/xblast/image/sprite/girl_D_3.pbm +share/xblast/image/sprite/girl_D_S.epm +share/xblast/image/sprite/girl_D_S.pbm +share/xblast/image/sprite/girl_L.epm +share/xblast/image/sprite/girl_L.pbm +share/xblast/image/sprite/girl_L1.epm +share/xblast/image/sprite/girl_L1.pbm +share/xblast/image/sprite/girl_L2.epm +share/xblast/image/sprite/girl_L2.pbm +share/xblast/image/sprite/girl_L_0.epm +share/xblast/image/sprite/girl_L_0.pbm +share/xblast/image/sprite/girl_L_1.epm +share/xblast/image/sprite/girl_L_1.pbm +share/xblast/image/sprite/girl_L_2.epm +share/xblast/image/sprite/girl_L_2.pbm +share/xblast/image/sprite/girl_L_3.epm +share/xblast/image/sprite/girl_L_3.pbm +share/xblast/image/sprite/girl_L_S.epm +share/xblast/image/sprite/girl_L_S.pbm +share/xblast/image/sprite/girl_R_0.epm +share/xblast/image/sprite/girl_R_0.pbm +share/xblast/image/sprite/girl_R_1.epm +share/xblast/image/sprite/girl_R_1.pbm +share/xblast/image/sprite/girl_R_2.epm +share/xblast/image/sprite/girl_R_2.pbm +share/xblast/image/sprite/girl_R_3.epm +share/xblast/image/sprite/girl_R_3.pbm +share/xblast/image/sprite/girl_R_S.epm +share/xblast/image/sprite/girl_R_S.pbm +share/xblast/image/sprite/girl_U_0.epm +share/xblast/image/sprite/girl_U_0.pbm +share/xblast/image/sprite/girl_U_1.epm +share/xblast/image/sprite/girl_U_1.pbm +share/xblast/image/sprite/girl_U_2.epm +share/xblast/image/sprite/girl_U_2.pbm +share/xblast/image/sprite/girl_U_3.epm +share/xblast/image/sprite/girl_U_3.pbm +share/xblast/image/sprite/girl_U_S.epm +share/xblast/image/sprite/girl_U_S.pbm +share/xblast/image/sprite/girl_W.epm +share/xblast/image/sprite/girl_W.pbm +share/xblast/image/sprite/girl_W2.epm +share/xblast/image/sprite/girl_W2.pbm +share/xblast/image/sprite/girl_W3.epm +share/xblast/image/sprite/girl_W3.pbm +share/xblast/image/sprite/golem_B.epm +share/xblast/image/sprite/golem_B.pbm +share/xblast/image/sprite/golem_DD.epm +share/xblast/image/sprite/golem_DD.pbm +share/xblast/image/sprite/golem_DL.epm +share/xblast/image/sprite/golem_DL.pbm +share/xblast/image/sprite/golem_DR.epm +share/xblast/image/sprite/golem_DR.pbm +share/xblast/image/sprite/golem_DU.epm +share/xblast/image/sprite/golem_DU.pbm +share/xblast/image/sprite/golem_D_0.epm +share/xblast/image/sprite/golem_D_0.pbm +share/xblast/image/sprite/golem_D_1.epm +share/xblast/image/sprite/golem_D_1.pbm +share/xblast/image/sprite/golem_D_2.epm +share/xblast/image/sprite/golem_D_2.pbm +share/xblast/image/sprite/golem_D_3.epm +share/xblast/image/sprite/golem_D_3.pbm +share/xblast/image/sprite/golem_D_S.epm +share/xblast/image/sprite/golem_D_S.pbm +share/xblast/image/sprite/golem_L.epm +share/xblast/image/sprite/golem_L.pbm +share/xblast/image/sprite/golem_L1.epm +share/xblast/image/sprite/golem_L1.pbm +share/xblast/image/sprite/golem_L2.epm +share/xblast/image/sprite/golem_L2.pbm +share/xblast/image/sprite/golem_L_0.epm +share/xblast/image/sprite/golem_L_0.pbm +share/xblast/image/sprite/golem_L_1.epm +share/xblast/image/sprite/golem_L_1.pbm +share/xblast/image/sprite/golem_L_2.epm +share/xblast/image/sprite/golem_L_2.pbm +share/xblast/image/sprite/golem_L_3.epm +share/xblast/image/sprite/golem_L_3.pbm +share/xblast/image/sprite/golem_L_S.epm +share/xblast/image/sprite/golem_L_S.pbm +share/xblast/image/sprite/golem_R_0.epm +share/xblast/image/sprite/golem_R_0.pbm +share/xblast/image/sprite/golem_R_1.epm +share/xblast/image/sprite/golem_R_1.pbm +share/xblast/image/sprite/golem_R_2.epm +share/xblast/image/sprite/golem_R_2.pbm +share/xblast/image/sprite/golem_R_3.epm +share/xblast/image/sprite/golem_R_3.pbm +share/xblast/image/sprite/golem_R_S.epm +share/xblast/image/sprite/golem_R_S.pbm +share/xblast/image/sprite/golem_U_0.epm +share/xblast/image/sprite/golem_U_0.pbm +share/xblast/image/sprite/golem_U_1.epm +share/xblast/image/sprite/golem_U_1.pbm +share/xblast/image/sprite/golem_U_2.epm +share/xblast/image/sprite/golem_U_2.pbm +share/xblast/image/sprite/golem_U_3.epm +share/xblast/image/sprite/golem_U_3.pbm +share/xblast/image/sprite/golem_U_S.epm +share/xblast/image/sprite/golem_U_S.pbm +share/xblast/image/sprite/golem_W.epm +share/xblast/image/sprite/golem_W.pbm +share/xblast/image/sprite/golem_W2.epm +share/xblast/image/sprite/golem_W2.pbm +share/xblast/image/sprite/golem_W3.epm +share/xblast/image/sprite/golem_W3.pbm +share/xblast/image/sprite/insect_B.epm +share/xblast/image/sprite/insect_B.pbm +share/xblast/image/sprite/insect_DD.epm +share/xblast/image/sprite/insect_DD.pbm +share/xblast/image/sprite/insect_DL.epm +share/xblast/image/sprite/insect_DL.pbm +share/xblast/image/sprite/insect_DR.epm +share/xblast/image/sprite/insect_DR.pbm +share/xblast/image/sprite/insect_DU.epm +share/xblast/image/sprite/insect_DU.pbm +share/xblast/image/sprite/insect_D_0.epm +share/xblast/image/sprite/insect_D_0.pbm +share/xblast/image/sprite/insect_D_1.epm +share/xblast/image/sprite/insect_D_1.pbm +share/xblast/image/sprite/insect_D_2.epm +share/xblast/image/sprite/insect_D_2.pbm +share/xblast/image/sprite/insect_D_3.epm +share/xblast/image/sprite/insect_D_3.pbm +share/xblast/image/sprite/insect_D_S.epm +share/xblast/image/sprite/insect_D_S.pbm +share/xblast/image/sprite/insect_L.epm +share/xblast/image/sprite/insect_L.pbm +share/xblast/image/sprite/insect_L1.epm +share/xblast/image/sprite/insect_L1.pbm +share/xblast/image/sprite/insect_L2.epm +share/xblast/image/sprite/insect_L2.pbm +share/xblast/image/sprite/insect_L_0.epm +share/xblast/image/sprite/insect_L_0.pbm +share/xblast/image/sprite/insect_L_1.epm +share/xblast/image/sprite/insect_L_1.pbm +share/xblast/image/sprite/insect_L_2.epm +share/xblast/image/sprite/insect_L_2.pbm +share/xblast/image/sprite/insect_L_3.epm +share/xblast/image/sprite/insect_L_3.pbm +share/xblast/image/sprite/insect_L_S.epm +share/xblast/image/sprite/insect_L_S.pbm +share/xblast/image/sprite/insect_R_0.epm +share/xblast/image/sprite/insect_R_0.pbm +share/xblast/image/sprite/insect_R_1.epm +share/xblast/image/sprite/insect_R_1.pbm +share/xblast/image/sprite/insect_R_2.epm +share/xblast/image/sprite/insect_R_2.pbm +share/xblast/image/sprite/insect_R_3.epm +share/xblast/image/sprite/insect_R_3.pbm +share/xblast/image/sprite/insect_R_S.epm +share/xblast/image/sprite/insect_R_S.pbm +share/xblast/image/sprite/insect_U_0.epm +share/xblast/image/sprite/insect_U_0.pbm +share/xblast/image/sprite/insect_U_1.epm +share/xblast/image/sprite/insect_U_1.pbm +share/xblast/image/sprite/insect_U_2.epm +share/xblast/image/sprite/insect_U_2.pbm +share/xblast/image/sprite/insect_U_3.epm +share/xblast/image/sprite/insect_U_3.pbm +share/xblast/image/sprite/insect_U_S.epm +share/xblast/image/sprite/insect_U_S.pbm +share/xblast/image/sprite/insect_W.epm +share/xblast/image/sprite/insect_W.pbm +share/xblast/image/sprite/insect_W2.epm +share/xblast/image/sprite/insect_W2.pbm +share/xblast/image/sprite/insect_W3.epm +share/xblast/image/sprite/insect_W3.pbm +share/xblast/image/sprite/jedi_B.epm +share/xblast/image/sprite/jedi_B.pbm +share/xblast/image/sprite/jedi_DD.epm +share/xblast/image/sprite/jedi_DD.pbm +share/xblast/image/sprite/jedi_DL.epm +share/xblast/image/sprite/jedi_DL.pbm +share/xblast/image/sprite/jedi_DR.epm +share/xblast/image/sprite/jedi_DR.pbm +share/xblast/image/sprite/jedi_DU.epm +share/xblast/image/sprite/jedi_DU.pbm +share/xblast/image/sprite/jedi_D_0.epm +share/xblast/image/sprite/jedi_D_0.pbm +share/xblast/image/sprite/jedi_D_1.epm +share/xblast/image/sprite/jedi_D_1.pbm +share/xblast/image/sprite/jedi_D_2.epm +share/xblast/image/sprite/jedi_D_2.pbm +share/xblast/image/sprite/jedi_D_3.epm +share/xblast/image/sprite/jedi_D_3.pbm +share/xblast/image/sprite/jedi_D_S.epm +share/xblast/image/sprite/jedi_D_S.pbm +share/xblast/image/sprite/jedi_L.epm +share/xblast/image/sprite/jedi_L.pbm +share/xblast/image/sprite/jedi_L1.epm +share/xblast/image/sprite/jedi_L1.pbm +share/xblast/image/sprite/jedi_L2.epm +share/xblast/image/sprite/jedi_L2.pbm +share/xblast/image/sprite/jedi_L_0.epm +share/xblast/image/sprite/jedi_L_0.pbm +share/xblast/image/sprite/jedi_L_1.epm +share/xblast/image/sprite/jedi_L_1.pbm +share/xblast/image/sprite/jedi_L_2.epm +share/xblast/image/sprite/jedi_L_2.pbm +share/xblast/image/sprite/jedi_L_3.epm +share/xblast/image/sprite/jedi_L_3.pbm +share/xblast/image/sprite/jedi_L_S.epm +share/xblast/image/sprite/jedi_L_S.pbm +share/xblast/image/sprite/jedi_R_0.epm +share/xblast/image/sprite/jedi_R_0.pbm +share/xblast/image/sprite/jedi_R_1.epm +share/xblast/image/sprite/jedi_R_1.pbm +share/xblast/image/sprite/jedi_R_2.epm +share/xblast/image/sprite/jedi_R_2.pbm +share/xblast/image/sprite/jedi_R_3.epm +share/xblast/image/sprite/jedi_R_3.pbm +share/xblast/image/sprite/jedi_R_S.epm +share/xblast/image/sprite/jedi_R_S.pbm +share/xblast/image/sprite/jedi_U_0.epm +share/xblast/image/sprite/jedi_U_0.pbm +share/xblast/image/sprite/jedi_U_1.epm +share/xblast/image/sprite/jedi_U_1.pbm +share/xblast/image/sprite/jedi_U_2.epm +share/xblast/image/sprite/jedi_U_2.pbm +share/xblast/image/sprite/jedi_U_3.epm +share/xblast/image/sprite/jedi_U_3.pbm +share/xblast/image/sprite/jedi_U_S.epm +share/xblast/image/sprite/jedi_U_S.pbm +share/xblast/image/sprite/jedi_W.epm +share/xblast/image/sprite/jedi_W.pbm +share/xblast/image/sprite/jedi_W2.epm +share/xblast/image/sprite/jedi_W2.pbm +share/xblast/image/sprite/jedi_W3.epm +share/xblast/image/sprite/jedi_W3.pbm +share/xblast/image/sprite/mecha_B.epm +share/xblast/image/sprite/mecha_B.pbm +share/xblast/image/sprite/mecha_DD.epm +share/xblast/image/sprite/mecha_DD.pbm +share/xblast/image/sprite/mecha_DL.epm +share/xblast/image/sprite/mecha_DL.pbm +share/xblast/image/sprite/mecha_DR.epm +share/xblast/image/sprite/mecha_DR.pbm +share/xblast/image/sprite/mecha_DU.epm +share/xblast/image/sprite/mecha_DU.pbm +share/xblast/image/sprite/mecha_D_0.epm +share/xblast/image/sprite/mecha_D_0.pbm +share/xblast/image/sprite/mecha_D_1.epm +share/xblast/image/sprite/mecha_D_1.pbm +share/xblast/image/sprite/mecha_D_2.epm +share/xblast/image/sprite/mecha_D_2.pbm +share/xblast/image/sprite/mecha_D_3.epm +share/xblast/image/sprite/mecha_D_3.pbm +share/xblast/image/sprite/mecha_D_S.epm +share/xblast/image/sprite/mecha_D_S.pbm +share/xblast/image/sprite/mecha_L.epm +share/xblast/image/sprite/mecha_L.pbm +share/xblast/image/sprite/mecha_L1.epm +share/xblast/image/sprite/mecha_L1.pbm +share/xblast/image/sprite/mecha_L2.epm +share/xblast/image/sprite/mecha_L2.pbm +share/xblast/image/sprite/mecha_L_0.epm +share/xblast/image/sprite/mecha_L_0.pbm +share/xblast/image/sprite/mecha_L_1.epm +share/xblast/image/sprite/mecha_L_1.pbm +share/xblast/image/sprite/mecha_L_2.epm +share/xblast/image/sprite/mecha_L_2.pbm +share/xblast/image/sprite/mecha_L_3.epm +share/xblast/image/sprite/mecha_L_3.pbm +share/xblast/image/sprite/mecha_L_S.epm +share/xblast/image/sprite/mecha_L_S.pbm +share/xblast/image/sprite/mecha_R_0.epm +share/xblast/image/sprite/mecha_R_0.pbm +share/xblast/image/sprite/mecha_R_1.epm +share/xblast/image/sprite/mecha_R_1.pbm +share/xblast/image/sprite/mecha_R_2.epm +share/xblast/image/sprite/mecha_R_2.pbm +share/xblast/image/sprite/mecha_R_3.epm +share/xblast/image/sprite/mecha_R_3.pbm +share/xblast/image/sprite/mecha_R_S.epm +share/xblast/image/sprite/mecha_R_S.pbm +share/xblast/image/sprite/mecha_U_0.epm +share/xblast/image/sprite/mecha_U_0.pbm +share/xblast/image/sprite/mecha_U_1.epm +share/xblast/image/sprite/mecha_U_1.pbm +share/xblast/image/sprite/mecha_U_2.epm +share/xblast/image/sprite/mecha_U_2.pbm +share/xblast/image/sprite/mecha_U_3.epm +share/xblast/image/sprite/mecha_U_3.pbm +share/xblast/image/sprite/mecha_U_S.epm +share/xblast/image/sprite/mecha_U_S.pbm +share/xblast/image/sprite/mecha_W.epm +share/xblast/image/sprite/mecha_W.pbm +share/xblast/image/sprite/mecha_W2.epm +share/xblast/image/sprite/mecha_W2.pbm +share/xblast/image/sprite/mecha_W3.epm +share/xblast/image/sprite/mecha_W3.pbm +share/xblast/image/sprite/morph.pbm +share/xblast/image/sprite/morph.ppm +share/xblast/image/sprite/normal_B.epm +share/xblast/image/sprite/normal_B.pbm +share/xblast/image/sprite/normal_DD.epm +share/xblast/image/sprite/normal_DD.pbm +share/xblast/image/sprite/normal_DL.epm +share/xblast/image/sprite/normal_DL.pbm +share/xblast/image/sprite/normal_DR.epm +share/xblast/image/sprite/normal_DR.pbm +share/xblast/image/sprite/normal_DU.epm +share/xblast/image/sprite/normal_DU.pbm +share/xblast/image/sprite/normal_D_0.epm +share/xblast/image/sprite/normal_D_0.pbm +share/xblast/image/sprite/normal_D_1.epm +share/xblast/image/sprite/normal_D_1.pbm +share/xblast/image/sprite/normal_D_2.epm +share/xblast/image/sprite/normal_D_2.pbm +share/xblast/image/sprite/normal_D_3.epm +share/xblast/image/sprite/normal_D_3.pbm +share/xblast/image/sprite/normal_D_S.epm +share/xblast/image/sprite/normal_D_S.pbm +share/xblast/image/sprite/normal_L.epm +share/xblast/image/sprite/normal_L.pbm +share/xblast/image/sprite/normal_L1.epm +share/xblast/image/sprite/normal_L1.pbm +share/xblast/image/sprite/normal_L2.epm +share/xblast/image/sprite/normal_L2.pbm +share/xblast/image/sprite/normal_L_0.epm +share/xblast/image/sprite/normal_L_0.pbm +share/xblast/image/sprite/normal_L_1.epm +share/xblast/image/sprite/normal_L_1.pbm +share/xblast/image/sprite/normal_L_2.epm +share/xblast/image/sprite/normal_L_2.pbm +share/xblast/image/sprite/normal_L_3.epm +share/xblast/image/sprite/normal_L_3.pbm +share/xblast/image/sprite/normal_L_S.epm +share/xblast/image/sprite/normal_L_S.pbm +share/xblast/image/sprite/normal_R_0.epm +share/xblast/image/sprite/normal_R_0.pbm +share/xblast/image/sprite/normal_R_1.epm +share/xblast/image/sprite/normal_R_1.pbm +share/xblast/image/sprite/normal_R_2.epm +share/xblast/image/sprite/normal_R_2.pbm +share/xblast/image/sprite/normal_R_3.epm +share/xblast/image/sprite/normal_R_3.pbm +share/xblast/image/sprite/normal_R_S.epm +share/xblast/image/sprite/normal_R_S.pbm +share/xblast/image/sprite/normal_U_0.epm +share/xblast/image/sprite/normal_U_0.pbm +share/xblast/image/sprite/normal_U_1.epm +share/xblast/image/sprite/normal_U_1.pbm +share/xblast/image/sprite/normal_U_2.epm +share/xblast/image/sprite/normal_U_2.pbm +share/xblast/image/sprite/normal_U_3.epm +share/xblast/image/sprite/normal_U_3.pbm +share/xblast/image/sprite/normal_U_S.epm +share/xblast/image/sprite/normal_U_S.pbm +share/xblast/image/sprite/normal_W.epm +share/xblast/image/sprite/normal_W.pbm +share/xblast/image/sprite/normal_W2.epm +share/xblast/image/sprite/normal_W2.pbm +share/xblast/image/sprite/normal_W3.epm +share/xblast/image/sprite/normal_W3.pbm +share/xblast/image/sprite/ping_B.epm +share/xblast/image/sprite/ping_B.pbm +share/xblast/image/sprite/ping_DD.epm +share/xblast/image/sprite/ping_DD.pbm +share/xblast/image/sprite/ping_DL.epm +share/xblast/image/sprite/ping_DL.pbm +share/xblast/image/sprite/ping_DR.epm +share/xblast/image/sprite/ping_DR.pbm +share/xblast/image/sprite/ping_DU.epm +share/xblast/image/sprite/ping_DU.pbm +share/xblast/image/sprite/ping_D_0.epm +share/xblast/image/sprite/ping_D_0.pbm +share/xblast/image/sprite/ping_D_1.epm +share/xblast/image/sprite/ping_D_1.pbm +share/xblast/image/sprite/ping_D_2.epm +share/xblast/image/sprite/ping_D_2.pbm +share/xblast/image/sprite/ping_D_3.epm +share/xblast/image/sprite/ping_D_3.pbm +share/xblast/image/sprite/ping_D_S.epm +share/xblast/image/sprite/ping_D_S.pbm +share/xblast/image/sprite/ping_L.epm +share/xblast/image/sprite/ping_L.pbm +share/xblast/image/sprite/ping_L1.epm +share/xblast/image/sprite/ping_L1.pbm +share/xblast/image/sprite/ping_L2.epm +share/xblast/image/sprite/ping_L2.pbm +share/xblast/image/sprite/ping_L_0.epm +share/xblast/image/sprite/ping_L_0.pbm +share/xblast/image/sprite/ping_L_1.epm +share/xblast/image/sprite/ping_L_1.pbm +share/xblast/image/sprite/ping_L_2.epm +share/xblast/image/sprite/ping_L_2.pbm +share/xblast/image/sprite/ping_L_3.epm +share/xblast/image/sprite/ping_L_3.pbm +share/xblast/image/sprite/ping_L_S.epm +share/xblast/image/sprite/ping_L_S.pbm +share/xblast/image/sprite/ping_R_0.epm +share/xblast/image/sprite/ping_R_0.pbm +share/xblast/image/sprite/ping_R_1.epm +share/xblast/image/sprite/ping_R_1.pbm +share/xblast/image/sprite/ping_R_2.epm +share/xblast/image/sprite/ping_R_2.pbm +share/xblast/image/sprite/ping_R_3.epm +share/xblast/image/sprite/ping_R_3.pbm +share/xblast/image/sprite/ping_R_S.epm +share/xblast/image/sprite/ping_R_S.pbm +share/xblast/image/sprite/ping_U_0.epm +share/xblast/image/sprite/ping_U_0.pbm +share/xblast/image/sprite/ping_U_1.epm +share/xblast/image/sprite/ping_U_1.pbm +share/xblast/image/sprite/ping_U_2.epm +share/xblast/image/sprite/ping_U_2.pbm +share/xblast/image/sprite/ping_U_3.epm +share/xblast/image/sprite/ping_U_3.pbm +share/xblast/image/sprite/ping_U_S.epm +share/xblast/image/sprite/ping_U_S.pbm +share/xblast/image/sprite/ping_W.epm +share/xblast/image/sprite/ping_W.pbm +share/xblast/image/sprite/ping_W2.epm +share/xblast/image/sprite/ping_W2.pbm +share/xblast/image/sprite/ping_W3.epm +share/xblast/image/sprite/ping_W3.pbm +share/xblast/image/sprite/punk_B.epm +share/xblast/image/sprite/punk_B.pbm +share/xblast/image/sprite/punk_DD.epm +share/xblast/image/sprite/punk_DD.pbm +share/xblast/image/sprite/punk_DL.epm +share/xblast/image/sprite/punk_DL.pbm +share/xblast/image/sprite/punk_DR.epm +share/xblast/image/sprite/punk_DR.pbm +share/xblast/image/sprite/punk_DU.epm +share/xblast/image/sprite/punk_DU.pbm +share/xblast/image/sprite/punk_D_0.epm +share/xblast/image/sprite/punk_D_0.pbm +share/xblast/image/sprite/punk_D_1.epm +share/xblast/image/sprite/punk_D_1.pbm +share/xblast/image/sprite/punk_D_2.epm +share/xblast/image/sprite/punk_D_2.pbm +share/xblast/image/sprite/punk_D_3.epm +share/xblast/image/sprite/punk_D_3.pbm +share/xblast/image/sprite/punk_D_S.epm +share/xblast/image/sprite/punk_D_S.pbm +share/xblast/image/sprite/punk_L.epm +share/xblast/image/sprite/punk_L.pbm +share/xblast/image/sprite/punk_L1.epm +share/xblast/image/sprite/punk_L1.pbm +share/xblast/image/sprite/punk_L2.epm +share/xblast/image/sprite/punk_L2.pbm +share/xblast/image/sprite/punk_L_0.epm +share/xblast/image/sprite/punk_L_0.pbm +share/xblast/image/sprite/punk_L_1.epm +share/xblast/image/sprite/punk_L_1.pbm +share/xblast/image/sprite/punk_L_2.epm +share/xblast/image/sprite/punk_L_2.pbm +share/xblast/image/sprite/punk_L_3.epm +share/xblast/image/sprite/punk_L_3.pbm +share/xblast/image/sprite/punk_L_S.epm +share/xblast/image/sprite/punk_L_S.pbm +share/xblast/image/sprite/punk_R_0.epm +share/xblast/image/sprite/punk_R_0.pbm +share/xblast/image/sprite/punk_R_1.epm +share/xblast/image/sprite/punk_R_1.pbm +share/xblast/image/sprite/punk_R_2.epm +share/xblast/image/sprite/punk_R_2.pbm +share/xblast/image/sprite/punk_R_3.epm +share/xblast/image/sprite/punk_R_3.pbm +share/xblast/image/sprite/punk_R_S.epm +share/xblast/image/sprite/punk_R_S.pbm +share/xblast/image/sprite/punk_U_0.epm +share/xblast/image/sprite/punk_U_0.pbm +share/xblast/image/sprite/punk_U_1.epm +share/xblast/image/sprite/punk_U_1.pbm +share/xblast/image/sprite/punk_U_2.epm +share/xblast/image/sprite/punk_U_2.pbm +share/xblast/image/sprite/punk_U_3.epm +share/xblast/image/sprite/punk_U_3.pbm +share/xblast/image/sprite/punk_U_S.epm +share/xblast/image/sprite/punk_U_S.pbm +share/xblast/image/sprite/punk_W.epm +share/xblast/image/sprite/punk_W.pbm +share/xblast/image/sprite/punk_W2.epm +share/xblast/image/sprite/punk_W2.pbm +share/xblast/image/sprite/punk_W3.epm +share/xblast/image/sprite/punk_W3.pbm +share/xblast/image/sprite/skel_D.pbm +share/xblast/image/sprite/skel_D.ppm +share/xblast/image/sprite/skel_L.pbm +share/xblast/image/sprite/skel_L.ppm +share/xblast/image/sprite/skel_R.pbm +share/xblast/image/sprite/skel_R.ppm +share/xblast/image/sprite/skel_U.pbm +share/xblast/image/sprite/skel_U.ppm +share/xblast/image/sprite/skull_B.epm +share/xblast/image/sprite/skull_B.pbm +share/xblast/image/sprite/skull_DD.epm +share/xblast/image/sprite/skull_DD.pbm +share/xblast/image/sprite/skull_DL.epm +share/xblast/image/sprite/skull_DL.pbm +share/xblast/image/sprite/skull_DR.epm +share/xblast/image/sprite/skull_DR.pbm +share/xblast/image/sprite/skull_DU.epm +share/xblast/image/sprite/skull_DU.pbm +share/xblast/image/sprite/skull_D_0.epm +share/xblast/image/sprite/skull_D_0.pbm +share/xblast/image/sprite/skull_D_1.epm +share/xblast/image/sprite/skull_D_1.pbm +share/xblast/image/sprite/skull_D_2.epm +share/xblast/image/sprite/skull_D_2.pbm +share/xblast/image/sprite/skull_D_3.epm +share/xblast/image/sprite/skull_D_3.pbm +share/xblast/image/sprite/skull_D_S.epm +share/xblast/image/sprite/skull_D_S.pbm +share/xblast/image/sprite/skull_L.epm +share/xblast/image/sprite/skull_L.pbm +share/xblast/image/sprite/skull_L1.epm +share/xblast/image/sprite/skull_L1.pbm +share/xblast/image/sprite/skull_L2.epm +share/xblast/image/sprite/skull_L2.pbm +share/xblast/image/sprite/skull_L_0.epm +share/xblast/image/sprite/skull_L_0.pbm +share/xblast/image/sprite/skull_L_1.epm +share/xblast/image/sprite/skull_L_1.pbm +share/xblast/image/sprite/skull_L_2.epm +share/xblast/image/sprite/skull_L_2.pbm +share/xblast/image/sprite/skull_L_3.epm +share/xblast/image/sprite/skull_L_3.pbm +share/xblast/image/sprite/skull_L_S.epm +share/xblast/image/sprite/skull_L_S.pbm +share/xblast/image/sprite/skull_R_0.epm +share/xblast/image/sprite/skull_R_0.pbm +share/xblast/image/sprite/skull_R_1.epm +share/xblast/image/sprite/skull_R_1.pbm +share/xblast/image/sprite/skull_R_2.epm +share/xblast/image/sprite/skull_R_2.pbm +share/xblast/image/sprite/skull_R_3.epm +share/xblast/image/sprite/skull_R_3.pbm +share/xblast/image/sprite/skull_R_S.epm +share/xblast/image/sprite/skull_R_S.pbm +share/xblast/image/sprite/skull_U_0.epm +share/xblast/image/sprite/skull_U_0.pbm +share/xblast/image/sprite/skull_U_1.epm +share/xblast/image/sprite/skull_U_1.pbm +share/xblast/image/sprite/skull_U_2.epm +share/xblast/image/sprite/skull_U_2.pbm +share/xblast/image/sprite/skull_U_3.epm +share/xblast/image/sprite/skull_U_3.pbm +share/xblast/image/sprite/skull_U_S.epm +share/xblast/image/sprite/skull_U_S.pbm +share/xblast/image/sprite/skull_W.epm +share/xblast/image/sprite/skull_W.pbm +share/xblast/image/sprite/skull_W2.epm +share/xblast/image/sprite/skull_W2.pbm +share/xblast/image/sprite/skull_W3.epm +share/xblast/image/sprite/skull_W3.pbm +share/xblast/image/sprite/sticky_B.epm +share/xblast/image/sprite/sticky_B.pbm +share/xblast/image/sprite/sticky_DD.epm +share/xblast/image/sprite/sticky_DD.pbm +share/xblast/image/sprite/sticky_DL.epm +share/xblast/image/sprite/sticky_DL.pbm +share/xblast/image/sprite/sticky_DR.epm +share/xblast/image/sprite/sticky_DR.pbm +share/xblast/image/sprite/sticky_DU.epm +share/xblast/image/sprite/sticky_DU.pbm +share/xblast/image/sprite/sticky_D_0.epm +share/xblast/image/sprite/sticky_D_0.pbm +share/xblast/image/sprite/sticky_D_1.epm +share/xblast/image/sprite/sticky_D_1.pbm +share/xblast/image/sprite/sticky_D_2.epm +share/xblast/image/sprite/sticky_D_2.pbm +share/xblast/image/sprite/sticky_D_3.epm +share/xblast/image/sprite/sticky_D_3.pbm +share/xblast/image/sprite/sticky_D_S.epm +share/xblast/image/sprite/sticky_D_S.pbm +share/xblast/image/sprite/sticky_L.epm +share/xblast/image/sprite/sticky_L.pbm +share/xblast/image/sprite/sticky_L1.epm +share/xblast/image/sprite/sticky_L1.pbm +share/xblast/image/sprite/sticky_L2.epm +share/xblast/image/sprite/sticky_L2.pbm +share/xblast/image/sprite/sticky_L_0.epm +share/xblast/image/sprite/sticky_L_0.pbm +share/xblast/image/sprite/sticky_L_1.epm +share/xblast/image/sprite/sticky_L_1.pbm +share/xblast/image/sprite/sticky_L_2.epm +share/xblast/image/sprite/sticky_L_2.pbm +share/xblast/image/sprite/sticky_L_3.epm +share/xblast/image/sprite/sticky_L_3.pbm +share/xblast/image/sprite/sticky_L_S.epm +share/xblast/image/sprite/sticky_L_S.pbm +share/xblast/image/sprite/sticky_R_0.epm +share/xblast/image/sprite/sticky_R_0.pbm +share/xblast/image/sprite/sticky_R_1.epm +share/xblast/image/sprite/sticky_R_1.pbm +share/xblast/image/sprite/sticky_R_2.epm +share/xblast/image/sprite/sticky_R_2.pbm +share/xblast/image/sprite/sticky_R_3.epm +share/xblast/image/sprite/sticky_R_3.pbm +share/xblast/image/sprite/sticky_R_S.epm +share/xblast/image/sprite/sticky_R_S.pbm +share/xblast/image/sprite/sticky_U_0.epm +share/xblast/image/sprite/sticky_U_0.pbm +share/xblast/image/sprite/sticky_U_1.epm +share/xblast/image/sprite/sticky_U_1.pbm +share/xblast/image/sprite/sticky_U_2.epm +share/xblast/image/sprite/sticky_U_2.pbm +share/xblast/image/sprite/sticky_U_3.epm +share/xblast/image/sprite/sticky_U_3.pbm +share/xblast/image/sprite/sticky_U_S.epm +share/xblast/image/sprite/sticky_U_S.pbm +share/xblast/image/sprite/sticky_W.epm +share/xblast/image/sprite/sticky_W.pbm +share/xblast/image/sprite/sticky_W2.epm +share/xblast/image/sprite/sticky_W2.pbm +share/xblast/image/sprite/sticky_W3.epm +share/xblast/image/sprite/sticky_W3.pbm +share/xblast/image/sprite/tall_B.epm +share/xblast/image/sprite/tall_B.pbm +share/xblast/image/sprite/tall_DD.epm +share/xblast/image/sprite/tall_DD.pbm +share/xblast/image/sprite/tall_DL.epm +share/xblast/image/sprite/tall_DL.pbm +share/xblast/image/sprite/tall_DR.epm +share/xblast/image/sprite/tall_DR.pbm +share/xblast/image/sprite/tall_DU.epm +share/xblast/image/sprite/tall_DU.pbm +share/xblast/image/sprite/tall_D_0.epm +share/xblast/image/sprite/tall_D_0.pbm +share/xblast/image/sprite/tall_D_1.epm +share/xblast/image/sprite/tall_D_1.pbm +share/xblast/image/sprite/tall_D_2.epm +share/xblast/image/sprite/tall_D_2.pbm +share/xblast/image/sprite/tall_D_3.epm +share/xblast/image/sprite/tall_D_3.pbm +share/xblast/image/sprite/tall_D_S.epm +share/xblast/image/sprite/tall_D_S.pbm +share/xblast/image/sprite/tall_L.epm +share/xblast/image/sprite/tall_L.pbm +share/xblast/image/sprite/tall_L1.epm +share/xblast/image/sprite/tall_L1.pbm +share/xblast/image/sprite/tall_L2.epm +share/xblast/image/sprite/tall_L2.pbm +share/xblast/image/sprite/tall_L_0.epm +share/xblast/image/sprite/tall_L_0.pbm +share/xblast/image/sprite/tall_L_1.epm +share/xblast/image/sprite/tall_L_1.pbm +share/xblast/image/sprite/tall_L_2.epm +share/xblast/image/sprite/tall_L_2.pbm +share/xblast/image/sprite/tall_L_3.epm +share/xblast/image/sprite/tall_L_3.pbm +share/xblast/image/sprite/tall_L_S.epm +share/xblast/image/sprite/tall_L_S.pbm +share/xblast/image/sprite/tall_R_0.epm +share/xblast/image/sprite/tall_R_0.pbm +share/xblast/image/sprite/tall_R_1.epm +share/xblast/image/sprite/tall_R_1.pbm +share/xblast/image/sprite/tall_R_2.epm +share/xblast/image/sprite/tall_R_2.pbm +share/xblast/image/sprite/tall_R_3.epm +share/xblast/image/sprite/tall_R_3.pbm +share/xblast/image/sprite/tall_R_S.epm +share/xblast/image/sprite/tall_R_S.pbm +share/xblast/image/sprite/tall_U_0.epm +share/xblast/image/sprite/tall_U_0.pbm +share/xblast/image/sprite/tall_U_1.epm +share/xblast/image/sprite/tall_U_1.pbm +share/xblast/image/sprite/tall_U_2.epm +share/xblast/image/sprite/tall_U_2.pbm +share/xblast/image/sprite/tall_U_3.epm +share/xblast/image/sprite/tall_U_3.pbm +share/xblast/image/sprite/tall_U_S.epm +share/xblast/image/sprite/tall_U_S.pbm +share/xblast/image/sprite/tall_W.epm +share/xblast/image/sprite/tall_W.pbm +share/xblast/image/sprite/tall_W2.epm +share/xblast/image/sprite/tall_W2.pbm +share/xblast/image/sprite/tall_W3.epm +share/xblast/image/sprite/tall_W3.pbm +share/xblast/image/sprite/tutorial_B.epm +share/xblast/image/sprite/tutorial_B.pbm +share/xblast/image/sprite/tutorial_DD.epm +share/xblast/image/sprite/tutorial_DD.pbm +share/xblast/image/sprite/tutorial_DL.epm +share/xblast/image/sprite/tutorial_DL.pbm +share/xblast/image/sprite/tutorial_DR.epm +share/xblast/image/sprite/tutorial_DR.pbm +share/xblast/image/sprite/tutorial_DU.epm +share/xblast/image/sprite/tutorial_DU.pbm +share/xblast/image/sprite/tutorial_D_0.epm +share/xblast/image/sprite/tutorial_D_0.pbm +share/xblast/image/sprite/tutorial_D_1.epm +share/xblast/image/sprite/tutorial_D_1.pbm +share/xblast/image/sprite/tutorial_D_2.epm +share/xblast/image/sprite/tutorial_D_2.pbm +share/xblast/image/sprite/tutorial_D_3.epm +share/xblast/image/sprite/tutorial_D_3.pbm +share/xblast/image/sprite/tutorial_D_S.epm +share/xblast/image/sprite/tutorial_D_S.pbm +share/xblast/image/sprite/tutorial_L.epm +share/xblast/image/sprite/tutorial_L.pbm +share/xblast/image/sprite/tutorial_L1.epm +share/xblast/image/sprite/tutorial_L1.pbm +share/xblast/image/sprite/tutorial_L2.epm +share/xblast/image/sprite/tutorial_L2.pbm +share/xblast/image/sprite/tutorial_L_0.epm +share/xblast/image/sprite/tutorial_L_0.pbm +share/xblast/image/sprite/tutorial_L_1.epm +share/xblast/image/sprite/tutorial_L_1.pbm +share/xblast/image/sprite/tutorial_L_2.epm +share/xblast/image/sprite/tutorial_L_2.pbm +share/xblast/image/sprite/tutorial_L_3.epm +share/xblast/image/sprite/tutorial_L_3.pbm +share/xblast/image/sprite/tutorial_L_S.epm +share/xblast/image/sprite/tutorial_L_S.pbm +share/xblast/image/sprite/tutorial_R_0.epm +share/xblast/image/sprite/tutorial_R_0.pbm +share/xblast/image/sprite/tutorial_R_1.epm +share/xblast/image/sprite/tutorial_R_1.pbm +share/xblast/image/sprite/tutorial_R_2.epm +share/xblast/image/sprite/tutorial_R_2.pbm +share/xblast/image/sprite/tutorial_R_3.epm +share/xblast/image/sprite/tutorial_R_3.pbm +share/xblast/image/sprite/tutorial_R_S.epm +share/xblast/image/sprite/tutorial_R_S.pbm +share/xblast/image/sprite/tutorial_U_0.epm +share/xblast/image/sprite/tutorial_U_0.pbm +share/xblast/image/sprite/tutorial_U_1.epm +share/xblast/image/sprite/tutorial_U_1.pbm +share/xblast/image/sprite/tutorial_U_2.epm +share/xblast/image/sprite/tutorial_U_2.pbm +share/xblast/image/sprite/tutorial_U_3.epm +share/xblast/image/sprite/tutorial_U_3.pbm +share/xblast/image/sprite/tutorial_U_S.epm +share/xblast/image/sprite/tutorial_U_S.pbm +share/xblast/image/sprite/tutorial_W.epm +share/xblast/image/sprite/tutorial_W.pbm +share/xblast/image/sprite/tutorial_W2.epm +share/xblast/image/sprite/tutorial_W2.pbm +share/xblast/image/sprite/tutorial_W3.epm +share/xblast/image/sprite/tutorial_W3.pbm +share/xblast/image/sprite/wuschel_B.epm +share/xblast/image/sprite/wuschel_B.pbm +share/xblast/image/sprite/wuschel_DD.epm +share/xblast/image/sprite/wuschel_DD.pbm +share/xblast/image/sprite/wuschel_DL.epm +share/xblast/image/sprite/wuschel_DL.pbm +share/xblast/image/sprite/wuschel_DR.epm +share/xblast/image/sprite/wuschel_DR.pbm +share/xblast/image/sprite/wuschel_DU.epm +share/xblast/image/sprite/wuschel_DU.pbm +share/xblast/image/sprite/wuschel_D_0.epm +share/xblast/image/sprite/wuschel_D_0.pbm +share/xblast/image/sprite/wuschel_D_1.epm +share/xblast/image/sprite/wuschel_D_1.pbm +share/xblast/image/sprite/wuschel_D_2.epm +share/xblast/image/sprite/wuschel_D_2.pbm +share/xblast/image/sprite/wuschel_D_3.epm +share/xblast/image/sprite/wuschel_D_3.pbm +share/xblast/image/sprite/wuschel_D_S.epm +share/xblast/image/sprite/wuschel_D_S.pbm +share/xblast/image/sprite/wuschel_L.epm +share/xblast/image/sprite/wuschel_L.pbm +share/xblast/image/sprite/wuschel_L1.epm +share/xblast/image/sprite/wuschel_L1.pbm +share/xblast/image/sprite/wuschel_L2.epm +share/xblast/image/sprite/wuschel_L2.pbm +share/xblast/image/sprite/wuschel_L_0.epm +share/xblast/image/sprite/wuschel_L_0.pbm +share/xblast/image/sprite/wuschel_L_1.epm +share/xblast/image/sprite/wuschel_L_1.pbm +share/xblast/image/sprite/wuschel_L_2.epm +share/xblast/image/sprite/wuschel_L_2.pbm +share/xblast/image/sprite/wuschel_L_3.epm +share/xblast/image/sprite/wuschel_L_3.pbm +share/xblast/image/sprite/wuschel_L_S.epm +share/xblast/image/sprite/wuschel_L_S.pbm +share/xblast/image/sprite/wuschel_R_0.epm +share/xblast/image/sprite/wuschel_R_0.pbm +share/xblast/image/sprite/wuschel_R_1.epm +share/xblast/image/sprite/wuschel_R_1.pbm +share/xblast/image/sprite/wuschel_R_2.epm +share/xblast/image/sprite/wuschel_R_2.pbm +share/xblast/image/sprite/wuschel_R_3.epm +share/xblast/image/sprite/wuschel_R_3.pbm +share/xblast/image/sprite/wuschel_R_S.epm +share/xblast/image/sprite/wuschel_R_S.pbm +share/xblast/image/sprite/wuschel_U_0.epm +share/xblast/image/sprite/wuschel_U_0.pbm +share/xblast/image/sprite/wuschel_U_1.epm +share/xblast/image/sprite/wuschel_U_1.pbm +share/xblast/image/sprite/wuschel_U_2.epm +share/xblast/image/sprite/wuschel_U_2.pbm +share/xblast/image/sprite/wuschel_U_3.epm +share/xblast/image/sprite/wuschel_U_3.pbm +share/xblast/image/sprite/wuschel_U_S.epm +share/xblast/image/sprite/wuschel_U_S.pbm +share/xblast/image/sprite/wuschel_W.epm +share/xblast/image/sprite/wuschel_W.pbm +share/xblast/image/sprite/wuschel_W2.epm +share/xblast/image/sprite/wuschel_W2.pbm +share/xblast/image/sprite/wuschel_W3.epm +share/xblast/image/sprite/wuschel_W3.pbm +share/xblast/image/sprite/wusel_B.epm +share/xblast/image/sprite/wusel_B.pbm +share/xblast/image/sprite/wusel_DD.epm +share/xblast/image/sprite/wusel_DD.pbm +share/xblast/image/sprite/wusel_DL.epm +share/xblast/image/sprite/wusel_DL.pbm +share/xblast/image/sprite/wusel_DR.epm +share/xblast/image/sprite/wusel_DR.pbm +share/xblast/image/sprite/wusel_DU.epm +share/xblast/image/sprite/wusel_DU.pbm +share/xblast/image/sprite/wusel_D_0.epm +share/xblast/image/sprite/wusel_D_0.pbm +share/xblast/image/sprite/wusel_D_1.epm +share/xblast/image/sprite/wusel_D_1.pbm +share/xblast/image/sprite/wusel_D_2.epm +share/xblast/image/sprite/wusel_D_2.pbm +share/xblast/image/sprite/wusel_D_3.epm +share/xblast/image/sprite/wusel_D_3.pbm +share/xblast/image/sprite/wusel_D_S.epm +share/xblast/image/sprite/wusel_D_S.pbm +share/xblast/image/sprite/wusel_L.epm +share/xblast/image/sprite/wusel_L.pbm +share/xblast/image/sprite/wusel_L1.epm +share/xblast/image/sprite/wusel_L1.pbm +share/xblast/image/sprite/wusel_L2.epm +share/xblast/image/sprite/wusel_L2.pbm +share/xblast/image/sprite/wusel_L_0.epm +share/xblast/image/sprite/wusel_L_0.pbm +share/xblast/image/sprite/wusel_L_1.epm +share/xblast/image/sprite/wusel_L_1.pbm +share/xblast/image/sprite/wusel_L_2.epm +share/xblast/image/sprite/wusel_L_2.pbm +share/xblast/image/sprite/wusel_L_3.epm +share/xblast/image/sprite/wusel_L_3.pbm +share/xblast/image/sprite/wusel_L_S.epm +share/xblast/image/sprite/wusel_L_S.pbm +share/xblast/image/sprite/wusel_R_0.epm +share/xblast/image/sprite/wusel_R_0.pbm +share/xblast/image/sprite/wusel_R_1.epm +share/xblast/image/sprite/wusel_R_1.pbm +share/xblast/image/sprite/wusel_R_2.epm +share/xblast/image/sprite/wusel_R_2.pbm +share/xblast/image/sprite/wusel_R_3.epm +share/xblast/image/sprite/wusel_R_3.pbm +share/xblast/image/sprite/wusel_R_S.epm +share/xblast/image/sprite/wusel_R_S.pbm +share/xblast/image/sprite/wusel_U_0.epm +share/xblast/image/sprite/wusel_U_0.pbm +share/xblast/image/sprite/wusel_U_1.epm +share/xblast/image/sprite/wusel_U_1.pbm +share/xblast/image/sprite/wusel_U_2.epm +share/xblast/image/sprite/wusel_U_2.pbm +share/xblast/image/sprite/wusel_U_3.epm +share/xblast/image/sprite/wusel_U_3.pbm +share/xblast/image/sprite/wusel_U_S.epm +share/xblast/image/sprite/wusel_U_S.pbm +share/xblast/image/sprite/wusel_W.epm +share/xblast/image/sprite/wusel_W.pbm +share/xblast/image/sprite/wusel_W2.epm +share/xblast/image/sprite/wusel_W2.pbm +share/xblast/image/sprite/wusel_W3.epm +share/xblast/image/sprite/wusel_W3.pbm +share/xblast/image/sprite/xmas_B.epm +share/xblast/image/sprite/xmas_B.pbm +share/xblast/image/sprite/xmas_DD.epm +share/xblast/image/sprite/xmas_DD.pbm +share/xblast/image/sprite/xmas_DL.epm +share/xblast/image/sprite/xmas_DL.pbm +share/xblast/image/sprite/xmas_DR.epm +share/xblast/image/sprite/xmas_DR.pbm +share/xblast/image/sprite/xmas_DU.epm +share/xblast/image/sprite/xmas_DU.pbm +share/xblast/image/sprite/xmas_D_0.epm +share/xblast/image/sprite/xmas_D_0.pbm +share/xblast/image/sprite/xmas_D_1.epm +share/xblast/image/sprite/xmas_D_1.pbm +share/xblast/image/sprite/xmas_D_2.epm +share/xblast/image/sprite/xmas_D_2.pbm +share/xblast/image/sprite/xmas_D_3.epm +share/xblast/image/sprite/xmas_D_3.pbm +share/xblast/image/sprite/xmas_D_S.epm +share/xblast/image/sprite/xmas_D_S.pbm +share/xblast/image/sprite/xmas_L.epm +share/xblast/image/sprite/xmas_L.pbm +share/xblast/image/sprite/xmas_L1.epm +share/xblast/image/sprite/xmas_L1.pbm +share/xblast/image/sprite/xmas_L2.epm +share/xblast/image/sprite/xmas_L2.pbm +share/xblast/image/sprite/xmas_L_0.epm +share/xblast/image/sprite/xmas_L_0.pbm +share/xblast/image/sprite/xmas_L_1.epm +share/xblast/image/sprite/xmas_L_1.pbm +share/xblast/image/sprite/xmas_L_2.epm +share/xblast/image/sprite/xmas_L_2.pbm +share/xblast/image/sprite/xmas_L_3.epm +share/xblast/image/sprite/xmas_L_3.pbm +share/xblast/image/sprite/xmas_L_S.epm +share/xblast/image/sprite/xmas_L_S.pbm +share/xblast/image/sprite/xmas_R_0.epm +share/xblast/image/sprite/xmas_R_0.pbm +share/xblast/image/sprite/xmas_R_1.epm +share/xblast/image/sprite/xmas_R_1.pbm +share/xblast/image/sprite/xmas_R_2.epm +share/xblast/image/sprite/xmas_R_2.pbm +share/xblast/image/sprite/xmas_R_3.epm +share/xblast/image/sprite/xmas_R_3.pbm +share/xblast/image/sprite/xmas_R_S.epm +share/xblast/image/sprite/xmas_R_S.pbm +share/xblast/image/sprite/xmas_U_0.epm +share/xblast/image/sprite/xmas_U_0.pbm +share/xblast/image/sprite/xmas_U_1.epm +share/xblast/image/sprite/xmas_U_1.pbm +share/xblast/image/sprite/xmas_U_2.epm +share/xblast/image/sprite/xmas_U_2.pbm +share/xblast/image/sprite/xmas_U_3.epm +share/xblast/image/sprite/xmas_U_3.pbm +share/xblast/image/sprite/xmas_U_S.epm +share/xblast/image/sprite/xmas_U_S.pbm +share/xblast/image/sprite/xmas_W.epm +share/xblast/image/sprite/xmas_W.pbm +share/xblast/image/sprite/xmas_W2.epm +share/xblast/image/sprite/xmas_W2.pbm +share/xblast/image/sprite/xmas_W3.epm +share/xblast/image/sprite/xmas_W3.pbm +share/xblast/image/sprite/zombie.pbm +share/xblast/image/sprite/zombie.ppm +share/xblast/level/321NOWhere.xal +share/xblast/level/3Protectbombs.xal +share/xblast/level/3_2_1_contact.xal +share/xblast/level/3d_world.xal +share/xblast/level/AThreeByThreeHell.xal +share/xblast/level/Aberlour.xal +share/xblast/level/Agoraphobia.xal +share/xblast/level/Agoraphobia2.xal +share/xblast/level/Ahahahah2.xal +share/xblast/level/AimRight3.xal +share/xblast/level/Aisle.xal +share/xblast/level/AllBeingEqual.xal +share/xblast/level/Alleys.xal +share/xblast/level/AlleysII.xal +share/xblast/level/Ambush.xal +share/xblast/level/Ambush2.xal +share/xblast/level/AnotherBigFurnace.xal +share/xblast/level/AreYouDown.xal +share/xblast/level/Arena.xal +share/xblast/level/Arena2.xal +share/xblast/level/AssHole.xal +share/xblast/level/BORNDEAD.xal +share/xblast/level/Backdraft.xal +share/xblast/level/Behind.xal +share/xblast/level/BigBang.xal +share/xblast/level/BlackHandHill.xal +share/xblast/level/Blitz.xal +share/xblast/level/Blue.xal +share/xblast/level/BlueberryPie.xal +share/xblast/level/Bock34.xal +share/xblast/level/Bock56.xal +share/xblast/level/BombColumn.xal +share/xblast/level/BombRow.xal +share/xblast/level/Boom.xal +share/xblast/level/Boxer.xal +share/xblast/level/BrownLevel.xal +share/xblast/level/Burnbaby.xal +share/xblast/level/ButterflyII.xal +share/xblast/level/CClub.xal +share/xblast/level/CROMCHIER.xal +share/xblast/level/CenterMaster.xal +share/xblast/level/Cestlourde.xal +share/xblast/level/ChaosFart.xal +share/xblast/level/Checkers.xal +share/xblast/level/Cheese.xal +share/xblast/level/ChercheRex.xal +share/xblast/level/ChooseYourWeapons.xal +share/xblast/level/ChristineSCages.xal +share/xblast/level/ClockwiseChaos.xal +share/xblast/level/CloseCall.xal +share/xblast/level/Collision.xal +share/xblast/level/ColoredTeleportation.xal +share/xblast/level/Comb.xal +share/xblast/level/ComboTown.xal +share/xblast/level/ContinuesThrough.xal +share/xblast/level/Corrida.xal +share/xblast/level/CoupDePute.xal +share/xblast/level/CrazyDiggers.xal +share/xblast/level/CrazyWorld.xal +share/xblast/level/Crossfire.xal +share/xblast/level/Crossfire2.xal +share/xblast/level/Curtain.xal +share/xblast/level/Daleif.xal +share/xblast/level/DaleifJustice.xal +share/xblast/level/DangerousTemptation.xal +share/xblast/level/DarkAvenger.xal +share/xblast/level/DarkCryptLevel.xal +share/xblast/level/DarkStreet.xal +share/xblast/level/DeathValley.xal +share/xblast/level/DestructionDerby.xal +share/xblast/level/Destructor.xal +share/xblast/level/DevNull.xal +share/xblast/level/DiagonalExpl.xal +share/xblast/level/DiagonalPower.xal +share/xblast/level/Diarrhea.xal +share/xblast/level/Distance.xal +share/xblast/level/Division.xal +share/xblast/level/DoomLike.xal +share/xblast/level/Drunk.xal +share/xblast/level/DualFights.xal +share/xblast/level/EUHOA.xal +share/xblast/level/Edinbourgh.xal +share/xblast/level/ElectrifyThem.xal +share/xblast/level/EuhHide.xal +share/xblast/level/Everblasting.xal +share/xblast/level/Evil2.xal +share/xblast/level/ExperimentalArea.xal +share/xblast/level/Explode.xal +share/xblast/level/ExtraGhost.xal +share/xblast/level/ExtraLife.xal +share/xblast/level/Fartmania.xal +share/xblast/level/FirecrackerGeschubse.xal +share/xblast/level/Five.xal +share/xblast/level/FlamesOfFury.xal +share/xblast/level/Flying.xal +share/xblast/level/FocalPoint.xal +share/xblast/level/Football.xal +share/xblast/level/FourCourners.xal +share/xblast/level/Fragile.xal +share/xblast/level/Framework.xal +share/xblast/level/FryEm.xal +share/xblast/level/FuckingSebastian.xal +share/xblast/level/FullPowerRingOFire.xal +share/xblast/level/FullPowerTeleport.xal +share/xblast/level/FullPowerWithoutLifeExtra.xal +share/xblast/level/FungusKick.xal +share/xblast/level/GITBB.xal +share/xblast/level/GameOfLife.xal +share/xblast/level/Genocide.xal +share/xblast/level/GetTheGrail.xal +share/xblast/level/GetTheMoment.xal +share/xblast/level/GetTheMoment2.xal +share/xblast/level/GetTheNapalm.xal +share/xblast/level/GetToTheBorderAndBack.xal +share/xblast/level/GhostDance.xal +share/xblast/level/GhostGarden.xal +share/xblast/level/Ghostbusters.xal +share/xblast/level/Glases.xal +share/xblast/level/GlasetSurprise.xal +share/xblast/level/GoFart.xal +share/xblast/level/GrabtharsHammer.xal +share/xblast/level/GrabtharsHammer2.xal +share/xblast/level/GranatenGeschubse.xal +share/xblast/level/GrandSchloederSchwarz.xal +share/xblast/level/Greed.xal +share/xblast/level/GrenadeFungusKick.xal +share/xblast/level/GrenadeKick.xal +share/xblast/level/GrenadePower.xal +share/xblast/level/GrenadeSnooker.xal +share/xblast/level/GrenadesAndVoidBlocks.xal +share/xblast/level/GrenadierSStew.xal +share/xblast/level/GyrosPyros.xal +share/xblast/level/GyrosPyros2.xal +share/xblast/level/HallwaysXB.xal +share/xblast/level/Halvgardering.xal +share/xblast/level/Hammer.xal +share/xblast/level/Handboll.xal +share/xblast/level/HardWork.xal +share/xblast/level/Hatch.xal +share/xblast/level/HaveYouGotFire.xal +share/xblast/level/Heineken.xal +share/xblast/level/HellOWien.xal +share/xblast/level/HellOnEarth.xal +share/xblast/level/Hemohes.xal +share/xblast/level/HideAndKill.xal +share/xblast/level/HideAndSnipe.xal +share/xblast/level/Highway.xal +share/xblast/level/HitHim.xal +share/xblast/level/HitmanHall.xal +share/xblast/level/HolyGrails.xal +share/xblast/level/Hospital.xal +share/xblast/level/HotRain.xal +share/xblast/level/HumanBomb.xal +share/xblast/level/HumanBombs.xal +share/xblast/level/IceRinkLevel.xal +share/xblast/level/ImprobableButPossible.xal +share/xblast/level/Inferno.xal +share/xblast/level/Initials.xal +share/xblast/level/InsideOutside.xal +share/xblast/level/Invisible.xal +share/xblast/level/InvisibleShots.xal +share/xblast/level/JailBrake.xal +share/xblast/level/JoBurg.xal +share/xblast/level/JudgementDayII.xal +share/xblast/level/Jump.xal +share/xblast/level/JumpII.xal +share/xblast/level/JumpinJackFlash.xal +share/xblast/level/KickHold.xal +share/xblast/level/KickNRun.xal +share/xblast/level/Kickpicker.xal +share/xblast/level/Kickshelter.xal +share/xblast/level/KingXBresse.xal +share/xblast/level/Klondike.xal +share/xblast/level/Kreuz.xal +share/xblast/level/KrissKross.xal +share/xblast/level/Kuopio.xal +share/xblast/level/LAreneDesInfos.xal +share/xblast/level/LaBiblio.xal +share/xblast/level/LabyrintheZone.xal +share/xblast/level/LeBonMoiEtLeTruand.xal +share/xblast/level/LeFort.xal +share/xblast/level/LeKosovo.xal +share/xblast/level/LeftToRight.xal +share/xblast/level/LegoCave.xal +share/xblast/level/LegoClassic.xal +share/xblast/level/LevelTemplate.xal +share/xblast/level/LevelX.xal +share/xblast/level/Levelkenntnis.xal +share/xblast/level/LongAndNarrow.xal +share/xblast/level/LongAndNarrow2.xal +share/xblast/level/LongAndNarrow3.xal +share/xblast/level/LongAndNarrow4.xal +share/xblast/level/LotsOfBombs.xal +share/xblast/level/LotsOfBombs2.xal +share/xblast/level/LotsOfBombs3.xal +share/xblast/level/LotsOfBombs4.xal +share/xblast/level/LotsOfBombs5.xal +share/xblast/level/LuckyBomb.xal +share/xblast/level/LuckyCharms.xal +share/xblast/level/MVOL.xal +share/xblast/level/MacDonaldSElectrify.xal +share/xblast/level/Maclaurins.xal +share/xblast/level/MazeInMotion.xal +share/xblast/level/MazeInMotionIIRushHour.xal +share/xblast/level/MegaRemote.xal +share/xblast/level/Memento.xal +share/xblast/level/Minesweeper.xal +share/xblast/level/MinesweeperS.xal +share/xblast/level/MoiJVeuxPasTriangulation.xal +share/xblast/level/MorphOrDie.xal +share/xblast/level/Morphissimo.xal +share/xblast/level/MovingDeath.xal +share/xblast/level/MultiBombsLevel.xal +share/xblast/level/Multiplicity.xal +share/xblast/level/Mutant.xal +share/xblast/level/NapalmSnooker.xal +share/xblast/level/NewKidsAroundTheBlock.xal +share/xblast/level/NewKidsAroundTheBlock2.xal +share/xblast/level/NewYorkCity.xal +share/xblast/level/NoExitFromHell.xal +share/xblast/level/NoRemorse.xal +share/xblast/level/NoSymmie.xal +share/xblast/level/NoWay.xal +share/xblast/level/NowhereToShrinkFullPLegoLand.xal +share/xblast/level/Nuclear.xal +share/xblast/level/OhShit.xal +share/xblast/level/OldGlen.xal +share/xblast/level/OmpaOmpa.xal +share/xblast/level/OneBombLevel.xal +share/xblast/level/OneMoreExplosion.xal +share/xblast/level/Overkill.xal +share/xblast/level/PanicRoom.xal +share/xblast/level/PanzergrenadierSchleifmann.xal +share/xblast/level/ParallelII.xal +share/xblast/level/PetersArrgghh.xal +share/xblast/level/PetersBattlefield.xal +share/xblast/level/PetersBattlefield2.xal +share/xblast/level/PetersBlackHandHill.xal +share/xblast/level/PetersBricklayerSAnger.xal +share/xblast/level/PetersCaveIn.xal +share/xblast/level/PetersCocuLandII.xal +share/xblast/level/PetersEsquive.xal +share/xblast/level/PetersFantasyLand.xal +share/xblast/level/PetersHallOfSnooker.xal +share/xblast/level/PetersHallways.xal +share/xblast/level/PetersHotStuff.xal +share/xblast/level/PetersInsideOutside.xal +share/xblast/level/PetersJudgementDay.xal +share/xblast/level/PetersLegoCave.xal +share/xblast/level/PetersNewKidsOnTheBlock.xal +share/xblast/level/PetersOmeletDeFromage.xal +share/xblast/level/PetersPotLuck.xal +share/xblast/level/PetersVoidHazard.xal +share/xblast/level/PetersWallbanger.xal +share/xblast/level/PetersWhenIWasYourAgeWithKick.xal +share/xblast/level/PhantomLand.xal +share/xblast/level/Phoenix.xal +share/xblast/level/Pi.xal +share/xblast/level/PinkII.xal +share/xblast/level/PinkLevel.xal +share/xblast/level/PinkShrink.xal +share/xblast/level/PinkShrink2.xal +share/xblast/level/PlusPlus5.xal +share/xblast/level/PoisonedTeaParty.xal +share/xblast/level/Polyvoyage.xal +share/xblast/level/Powerblast.xal +share/xblast/level/PumpAndRunAway.xal +share/xblast/level/PureHell.xal +share/xblast/level/Pursuit.xal +share/xblast/level/Querfeuer1.xal +share/xblast/level/Querfeuer2.xal +share/xblast/level/Querfeuer3.xal +share/xblast/level/Querfeuer4.xal +share/xblast/level/Querfeuer5.xal +share/xblast/level/Quick.xal +share/xblast/level/Quiz.xal +share/xblast/level/QuoVadis.xal +share/xblast/level/Rain.xal +share/xblast/level/RebuildTheMaze.xal +share/xblast/level/Reconstructor.xal +share/xblast/level/RedAlert.xal +share/xblast/level/RedOrYellow.xal +share/xblast/level/RedOrYellowII.xal +share/xblast/level/RemoteControlledFullPower.xal +share/xblast/level/RenovationKill.xal +share/xblast/level/ReturnToSender.xal +share/xblast/level/ReturnToSender2.xal +share/xblast/level/RexCherche.xal +share/xblast/level/RightSide.xal +share/xblast/level/RightSide2.xal +share/xblast/level/RingOfDeath.xal +share/xblast/level/RingOfFire.xal +share/xblast/level/RockAroundTheClock.xal +share/xblast/level/Rotatetildeath.xal +share/xblast/level/RoundAndRound.xal +share/xblast/level/RunNacher.xal +share/xblast/level/RunningCrualRebounds.xal +share/xblast/level/Runway.xal +share/xblast/level/SOBEIT.xal +share/xblast/level/SafeBox.xal +share/xblast/level/Scissor.xal +share/xblast/level/SearchForGrails.xal +share/xblast/level/SearchingGrailSpiral.xal +share/xblast/level/ShanghaiNoon.xal +share/xblast/level/ShortBombs.xal +share/xblast/level/ShortBombs2.xal +share/xblast/level/ShrinkAndExpand.xal +share/xblast/level/SicknessTestLevel.xal +share/xblast/level/SmilingFace.xal +share/xblast/level/Snake.xal +share/xblast/level/SnipeAndRun.xal +share/xblast/level/SnipeAndRunn.xal +share/xblast/level/SnookerAisle.xal +share/xblast/level/SnookerCave.xal +share/xblast/level/SnookerCaveLongFuse.xal +share/xblast/level/Snookerpump.xal +share/xblast/level/SpaceBalls.xal +share/xblast/level/Spawner.xal +share/xblast/level/SpeedTrack.xal +share/xblast/level/Spinner.xal +share/xblast/level/Spirello.xal +share/xblast/level/Spirello2.xal +share/xblast/level/Split.xal +share/xblast/level/Squares.xal +share/xblast/level/StayPut.xal +share/xblast/level/Steal.xal +share/xblast/level/StealAndKill.xal +share/xblast/level/StillTrying.xal +share/xblast/level/StopIt.xal +share/xblast/level/Stopperitis.xal +share/xblast/level/StreetsOfHell.xal +share/xblast/level/Suck.xal +share/xblast/level/SummaCumLaude.xal +share/xblast/level/SuperFrog.xal +share/xblast/level/SuperSTop.xal +share/xblast/level/SuperSnipe.xal +share/xblast/level/SuperSteal.xal +share/xblast/level/Surprise.xal +share/xblast/level/SurvivalOfTheFittest2.xal +share/xblast/level/SwapColor.xal +share/xblast/level/SwapPosition.xal +share/xblast/level/SwingingInTheRain.xal +share/xblast/level/THECenter.xal +share/xblast/level/TeddybearChamber.xal +share/xblast/level/TheBigBanana.xal +share/xblast/level/TheBombexpert.xal +share/xblast/level/TheBox.xal +share/xblast/level/TheDucks.xal +share/xblast/level/TheEscape.xal +share/xblast/level/TheInvincibleShrinker.xal +share/xblast/level/TheKickContest.xal +share/xblast/level/TheMask.xal +share/xblast/level/ThePaddock.xal +share/xblast/level/TheRing.xal +share/xblast/level/TheRiver.xal +share/xblast/level/TheSnookerAlley.xal +share/xblast/level/TheTacticalOne.xal +share/xblast/level/TheTacticalOne2.xal +share/xblast/level/TheTunnel.xal +share/xblast/level/ThreeInARow.xal +share/xblast/level/ThreeInARow2.xal +share/xblast/level/Tigers.xal +share/xblast/level/TinyWorld.xal +share/xblast/level/TooHardForMe.xal +share/xblast/level/ToraBora.xal +share/xblast/level/Touch.xal +share/xblast/level/Toxic.xal +share/xblast/level/Traffic.xal +share/xblast/level/Trap.xal +share/xblast/level/TrapLand.xal +share/xblast/level/TrappedOnTheLeft.xal +share/xblast/level/TriangleTraffic.xal +share/xblast/level/Triangles.xal +share/xblast/level/TropPuissantII.xal +share/xblast/level/Turtles.xal +share/xblast/level/TwoFaces.xal +share/xblast/level/Ueberraschungsei.xal +share/xblast/level/Unholy.xal +share/xblast/level/UpAroundTheBend.xal +share/xblast/level/UpNDown.xal +share/xblast/level/UpNDown2.xal +share/xblast/level/Upstairs.xal +share/xblast/level/VoidBlocks1.xal +share/xblast/level/VoidBlocks2.xal +share/xblast/level/VoidBlocks3.xal +share/xblast/level/VoidBlocks4.xal +share/xblast/level/VoidLabyrinth.xal +share/xblast/level/VousAvezDitFromage.xal +share/xblast/level/WaitForExtraLife.xal +share/xblast/level/WaitingForTheExtras.xal +share/xblast/level/Weapons.xal +share/xblast/level/WhereCanIHide.xal +share/xblast/level/Whimsy.xal +share/xblast/level/WhoSGotBalls.xal +share/xblast/level/X.xal +share/xblast/level/XBlast1997.xal +share/xblast/level/XBlost.xal +share/xblast/level/XLotto.xal +share/xblast/level/XTra.xal +share/xblast/level/Xmas.xal +share/xblast/level/YinYangLevel.xal +share/xblast/level/Yobaaaaaa.xal +share/xblast/level/YouAllGottaDie.xal +share/xblast/level/YouCanRunButYouCanTHide.xal +share/xblast/level/ZQLast.xal +share/xblast/level/Zipper.xal +share/xblast/level/ahahahah.xal +share/xblast/level/aimatthecenter.xal +share/xblast/level/aimright.xal +share/xblast/level/aimright2.xal +share/xblast/level/airrebounds.xal +share/xblast/level/all_good_things.xal +share/xblast/level/allerretourfatal.xal +share/xblast/level/amazingblaze.xal +share/xblast/level/anti_gravity.xal +share/xblast/level/anti_gravity2.xal +share/xblast/level/anti_mitch.xal +share/xblast/level/anti_personnal_mines.xal +share/xblast/level/aqua.xal +share/xblast/level/aroundtheclock.xal +share/xblast/level/arrgghh.xal +share/xblast/level/asteroids.xal +share/xblast/level/asymmetrix.xal +share/xblast/level/atmosphere.xal +share/xblast/level/atomicdance.xal +share/xblast/level/balloon.xal +share/xblast/level/banthebonuses.xal +share/xblast/level/barricade.xal +share/xblast/level/battlefield.xal +share/xblast/level/beamania.xal +share/xblast/level/belucky.xal +share/xblast/level/benito.xal +share/xblast/level/bermudatriangle.xal +share/xblast/level/beverycareful.xal +share/xblast/level/bfart.xal +share/xblast/level/black_zone.xal +share/xblast/level/blackend.xal +share/xblast/level/blast_o_morph.xal +share/xblast/level/blast_o_snipe.xal +share/xblast/level/blastaway.xal +share/xblast/level/blastersindahood.xal +share/xblast/level/blind.xal +share/xblast/level/blockmaster.xal +share/xblast/level/blow.xal +share/xblast/level/bluetooth.xal +share/xblast/level/boem.xal +share/xblast/level/boing.xal +share/xblast/level/bomb_a_la_surprise.xal +share/xblast/level/bomb_junk.xal +share/xblast/level/bomb_laboratory.xal +share/xblast/level/bombboxes.xal +share/xblast/level/bombbuffet.xal +share/xblast/level/bombeaters.xal +share/xblast/level/bombing.xal +share/xblast/level/bombsaway.xal +share/xblast/level/bombsrange.xal +share/xblast/level/bonzomshell.xal +share/xblast/level/boobytrap.xal +share/xblast/level/boostyworld.xal +share/xblast/level/born_to_be_killed.xal +share/xblast/level/boum.xal +share/xblast/level/bounchyworld.xal +share/xblast/level/bouncy_bouncy.xal +share/xblast/level/bowl.xal +share/xblast/level/breakandblast.xal +share/xblast/level/bricklayer_s_anger.xal +share/xblast/level/bricks_with_extra_fries.xal +share/xblast/level/bsquare.xal +share/xblast/level/butterfly.xal +share/xblast/level/cadeau.xal +share/xblast/level/caged.xal +share/xblast/level/candy_land.xal +share/xblast/level/carnage.xal +share/xblast/level/castle.xal +share/xblast/level/castle_death_part_1.xal +share/xblast/level/catwalk.xal +share/xblast/level/cave_in.xal +share/xblast/level/center.xal +share/xblast/level/chain_reaction.xal +share/xblast/level/chaos.xal +share/xblast/level/chaosa.xal +share/xblast/level/checkmate.xal +share/xblast/level/cheese.ppm +share/xblast/level/chillyland.xal +share/xblast/level/chipsetcahuetes.xal +share/xblast/level/choupachoups.xal +share/xblast/level/christinesdungeon.xal +share/xblast/level/christmas1999.xal +share/xblast/level/circle_jerk.xal +share/xblast/level/clockwise.xal +share/xblast/level/clockwise_but_you_walk_wrong.xal +share/xblast/level/clockwisecirculation.xal +share/xblast/level/clockwork.xal +share/xblast/level/close_quarters.xal +share/xblast/level/closeencounters.xal +share/xblast/level/closet_psycho.xal +share/xblast/level/coculand.xal +share/xblast/level/commando.xal +share/xblast/level/confusion.xal +share/xblast/level/contact_sports.xal +share/xblast/level/cooperation.xal +share/xblast/level/corsica2.xal +share/xblast/level/cotesauvage.xal +share/xblast/level/coursforrest.xal +share/xblast/level/creeping_death.xal +share/xblast/level/crimsonhorizon.xal +share/xblast/level/cross_of_doom.xal +share/xblast/level/crual_rebounds.xal +share/xblast/level/crualreboundsii.xal +share/xblast/level/custardslaststand.xal +share/xblast/level/d_oh.xal +share/xblast/level/daleif1.xal +share/xblast/level/deadwarrant.xal +share/xblast/level/death_match.xal +share/xblast/level/deathinthemiddle.xal +share/xblast/level/deathseparateeastfromwest.xal +share/xblast/level/deconnepas.xal +share/xblast/level/deep_forest.xal +share/xblast/level/deep_forest_2_graal_quest.xal +share/xblast/level/demolition_man.xal +share/xblast/level/desert_storm.xal +share/xblast/level/deuxlignesunsurvivant.xal +share/xblast/level/diehard.xal +share/xblast/level/dig_dug_nostalgy.xal +share/xblast/level/digmout.xal +share/xblast/level/disabled.xal +share/xblast/level/disease.xal +share/xblast/level/disguise.xal +share/xblast/level/diver.xal +share/xblast/level/doh.xal +share/xblast/level/dontbeill.xal +share/xblast/level/donthide.xal +share/xblast/level/doom.xal +share/xblast/level/doomsday.xal +share/xblast/level/double_crown.xal +share/xblast/level/dropkick.xal +share/xblast/level/drugaddicts.xal +share/xblast/level/duel.xal +share/xblast/level/duel_in_the_sun.xal +share/xblast/level/dungeon_master.xal +share/xblast/level/easytohide.xal +share/xblast/level/eden.xal +share/xblast/level/egg.xal +share/xblast/level/egyptian.xal +share/xblast/level/emperorofmouls.xal +share/xblast/level/england.xal +share/xblast/level/enoughbombsforeveryone.xal +share/xblast/level/enterthedragon.xal +share/xblast/level/epfltest.xal +share/xblast/level/eraser.xal +share/xblast/level/erikaetlesrobots.xal +share/xblast/level/etmoicestgringo.xal +share/xblast/level/euryclee.xal +share/xblast/level/evil.xal +share/xblast/level/faceoff.xal +share/xblast/level/falgundsworld2.xal +share/xblast/level/fallingcurtain.xal +share/xblast/level/fantasy_land.xal +share/xblast/level/fart.xal +share/xblast/level/fast_boum.xal +share/xblast/level/fatviscousandpermanent.xal +share/xblast/level/feel_free.xal +share/xblast/level/fightaroundthecheese.xal +share/xblast/level/fightforyourright.xal +share/xblast/level/findyourway.xal +share/xblast/level/fiotteland.xal +share/xblast/level/fire.xal +share/xblast/level/firecracker_surprise.xal +share/xblast/level/fireforget.xal +share/xblast/level/flower_power.xal +share/xblast/level/fofolle.xal +share/xblast/level/footwork.xal +share/xblast/level/footworkii.xal +share/xblast/level/fortress.xal +share/xblast/level/four_corners.xal +share/xblast/level/fourcornersii.xal +share/xblast/level/fourcornersiii.xal +share/xblast/level/fourfold.xal +share/xblast/level/freekick.xal +share/xblast/level/frogger.xal +share/xblast/level/fuckingmarco.xal +share/xblast/level/full_power_farters.xal +share/xblast/level/full_power_level.xal +share/xblast/level/full_power_level1.xal +share/xblast/level/full_power_level_ii.xal +share/xblast/level/full_power_level_iii.xal +share/xblast/level/full_power_snookers.xal +share/xblast/level/fullblast.xal +share/xblast/level/fullcontact.xal +share/xblast/level/fungus_fun.xal +share/xblast/level/funinthedark.xal +share/xblast/level/g_force.xal +share/xblast/level/gauntlet.xal +share/xblast/level/gavage.xal +share/xblast/level/get_your_kit_out.xal +share/xblast/level/getoutofthismaze.xal +share/xblast/level/gforce.xal +share/xblast/level/ghb.xal +share/xblast/level/ghb_2.xal +share/xblast/level/ghostintheshrink.xal +share/xblast/level/ghosttown.xal +share/xblast/level/give_it_a_shot.xal +share/xblast/level/givemeanx.xal +share/xblast/level/gogetthemtiger.xal +share/xblast/level/goingroundandround.xal +share/xblast/level/gooutandplay.xal +share/xblast/level/gorigth.xal +share/xblast/level/graal_quest.xal +share/xblast/level/grailmaster.xal +share/xblast/level/gravitation.xal +share/xblast/level/gravitation_is_back.xal +share/xblast/level/gravitational_rotation.xal +share/xblast/level/gravitlamanque.xal +share/xblast/level/gravity.xal +share/xblast/level/green.xal +share/xblast/level/grenada.xal +share/xblast/level/grenade_duel.xal +share/xblast/level/grisblast.xal +share/xblast/level/grisvardsnightmare.xal +share/xblast/level/grisvardsnightmareii.xal +share/xblast/level/groupofdeath.xal +share/xblast/level/grownkill.xal +share/xblast/level/grownkillii.xal +share/xblast/level/gunfight.xal +share/xblast/level/hall_of_snooker.xal +share/xblast/level/hallowe_en.xal +share/xblast/level/hallways.xal +share/xblast/level/happydeath.xal +share/xblast/level/happyface.xal +share/xblast/level/haunted_house.xal +share/xblast/level/hauntedhell.xal +share/xblast/level/hbblast.xal +share/xblast/level/hell_diver.xal +share/xblast/level/hexagon_excitation.xal +share/xblast/level/hexagon_flowers.xal +share/xblast/level/hexagonhell.xal +share/xblast/level/hide_n_seek.xal +share/xblast/level/hit_and_run.xal +share/xblast/level/ho_chi_mayhem.xal +share/xblast/level/holdit.xal +share/xblast/level/holyrenovation.xal +share/xblast/level/holyshit.xal +share/xblast/level/hot_stuff.xal +share/xblast/level/hotstuffii.xal +share/xblast/level/hourglass.xal +share/xblast/level/hunted.xal +share/xblast/level/hunter.xal +share/xblast/level/huntinghighlow.xal +share/xblast/level/hurryupbeforeshroops.xal +share/xblast/level/i_can_smell_that_from_here.xal +share/xblast/level/iceberg_droit_devant.xal +share/xblast/level/iceland.xal +share/xblast/level/icerunner.xal +share/xblast/level/illusion.xal +share/xblast/level/ilssonttousmalades.xal +share/xblast/level/immobilisationfatale.xal +share/xblast/level/indiana_jones.xal +share/xblast/level/indigestion.xal +share/xblast/level/inesc.xal +share/xblast/level/insideout.xal +share/xblast/level/inv_x_ible.xal +share/xblast/level/invaderordefender.xal +share/xblast/level/invertability.xal +share/xblast/level/invisible_man.xal +share/xblast/level/invisiblemorph.xal +share/xblast/level/invisiblocks.xal +share/xblast/level/islandofhope.xal +share/xblast/level/itll_grow_on_you.xal +share/xblast/level/j_ai_froid_aux_pieds.xal +share/xblast/level/jackylevel.xal +share/xblast/level/jaune.xal +share/xblast/level/je_m_appelle_rico.xal +share/xblast/level/jedi_power.xal +share/xblast/level/jedi_power_ii.xal +share/xblast/level/jedipoweriii.xal +share/xblast/level/judgement_day.xal +share/xblast/level/justdoit.xal +share/xblast/level/kaboom.xal +share/xblast/level/kaboum_contact_party.xal +share/xblast/level/keep_your_eye_on_the_bomb.xal +share/xblast/level/kick.xal +share/xblast/level/kickagain.xal +share/xblast/level/kill.xal +share/xblast/level/kingofmoullevels.xal +share/xblast/level/kingofthehuitres.xal +share/xblast/level/kingoftheoysters.xal +share/xblast/level/kmnrsrtten.xal +share/xblast/level/knowyourplace.xal +share/xblast/level/la_boom.xal +share/xblast/level/la_mine.xal +share/xblast/level/la_ruee_vers_l_or.xal +share/xblast/level/labyrinth_blast.xal +share/xblast/level/lacorniche.xal +share/xblast/level/lacueillettedestomates.xal +share/xblast/level/ladder.xal +share/xblast/level/lamer.xal +share/xblast/level/lecachot.xal +share/xblast/level/legoland.xal +share/xblast/level/legoland2x.xal +share/xblast/level/legoworld.xal +share/xblast/level/lesportesdelamort.xal +share/xblast/level/level_sue.xal +share/xblast/level/life_race.xal +share/xblast/level/lifeisenought3.xal +share/xblast/level/liferace.xal +share/xblast/level/lightskyblue.xal +share/xblast/level/lives.xal +share/xblast/level/long_way.xal +share/xblast/level/longway.xal +share/xblast/level/lookaround.xal +share/xblast/level/loria.xal +share/xblast/level/losange_losange.xal +share/xblast/level/losange_over_excitation.xal +share/xblast/level/losangeoverexcitationii.xal +share/xblast/level/lotsofexplosion.xal +share/xblast/level/luciferspiral.xal +share/xblast/level/luckyluke.xal +share/xblast/level/mac_donald_s.xal +share/xblast/level/madness.xal +share/xblast/level/magic.xal +share/xblast/level/magnum44.xal +share/xblast/level/marcvictims.xal +share/xblast/level/masquerade.xal +share/xblast/level/mastersland.xal +share/xblast/level/maybe.xal +share/xblast/level/mayhem.xal +share/xblast/level/mayhemmania.xal +share/xblast/level/maze_runner.xal +share/xblast/level/mazeworld.xal +share/xblast/level/megablast.xal +share/xblast/level/megablast2.xal +share/xblast/level/melttheweights.xal +share/xblast/level/metal_world.xal +share/xblast/level/metalworld.xal +share/xblast/level/mexicanjumpingbeans.xal +share/xblast/level/michelson.xal +share/xblast/level/middleisyoursalvation.xal +share/xblast/level/mind_games.xal +share/xblast/level/miracleofmodernscience.xal +share/xblast/level/miragewalls.xal +share/xblast/level/mlevel.xal +share/xblast/level/moonreversi.xal +share/xblast/level/moonwalking.xal +share/xblast/level/more_mayhem.xal +share/xblast/level/mort.xal +share/xblast/level/mr_beam.xal +share/xblast/level/murcassant.xal +share/xblast/level/napalm_justice.xal +share/xblast/level/napalmcrazy.xal +share/xblast/level/napalmgardens.xal +share/xblast/level/napalmloop.xal +share/xblast/level/napalmmorphing.xal +share/xblast/level/narf.xal +share/xblast/level/narrowlittlesecretroom.xal +share/xblast/level/nasty.xal +share/xblast/level/nasty_pasty.xal +share/xblast/level/nin_world.xal +share/xblast/level/ninja_warriors.xal +share/xblast/level/noisyjeannot.xal +share/xblast/level/nonalinthewind.xal +share/xblast/level/nooo_f_ing_walls.xal +share/xblast/level/nothing_short_of_warfare.xal +share/xblast/level/nowhere_to_run.xal +share/xblast/level/nowhere_to_run_ii.xal +share/xblast/level/nowyoudie.xal +share/xblast/level/oeufsdepaques.xal +share/xblast/level/oldfaithful.xal +share/xblast/level/omeletdefromage.xal +share/xblast/level/open_warfare.xal +share/xblast/level/opportunisme.xal +share/xblast/level/out_of_control.xal +share/xblast/level/out_of_the_frying_pan.xal +share/xblast/level/pandemonium.xal +share/xblast/level/panzergrenadierzwei.xal +share/xblast/level/paradise_city.xal +share/xblast/level/parallel_world.xal +share/xblast/level/pastousalafois.xal +share/xblast/level/peppercorn.xal +share/xblast/level/perfecttiming.xal +share/xblast/level/phantom.xal +share/xblast/level/pinball_dreams.xal +share/xblast/level/pinion.xal +share/xblast/level/pink.xal +share/xblast/level/pinkrabbit.xal +share/xblast/level/pipedream.xal +share/xblast/level/pizza.xal +share/xblast/level/placardabalai.xal +share/xblast/level/placardabalai2.xal +share/xblast/level/playground.xal +share/xblast/level/plus.xal +share/xblast/level/plus_plus_2.xal +share/xblast/level/plus_plus_3.xal +share/xblast/level/plusplus4.xal +share/xblast/level/plusplusmoutz.xal +share/xblast/level/plusplusmoutz1.xal +share/xblast/level/poisonedarea.xal +share/xblast/level/popcorn.xal +share/xblast/level/pot_luck.xal +share/xblast/level/power.xal +share/xblast/level/powerupsinthemiddle.xal +share/xblast/level/psychological_warfare.xal +share/xblast/level/psychose.xal +share/xblast/level/psykogroupycocainecrazy.xal +share/xblast/level/pyramid.xal +share/xblast/level/pyromania.xal +share/xblast/level/pythagorus_theorem.xal +share/xblast/level/quadrilateral_excitation.xal +share/xblast/level/quarter.xal +share/xblast/level/quefaitlapolice.xal +share/xblast/level/quelecielestbas.xal +share/xblast/level/quickdraw.xal +share/xblast/level/random.xal +share/xblast/level/random_field.xal +share/xblast/level/rapiddeath.xal +share/xblast/level/raymasters.xal +share/xblast/level/reconstruction.xal +share/xblast/level/rectangle.xal +share/xblast/level/reincocloned.xal +share/xblast/level/remembernokicking.xal +share/xblast/level/remote_quest.xal +share/xblast/level/remotesnow.xal +share/xblast/level/renew.xal +share/xblast/level/renovation_man.xal +share/xblast/level/renovation_master.xal +share/xblast/level/restrictedzonetapettelandiv.xal +share/xblast/level/revive.xal +share/xblast/level/rhombus.xal +share/xblast/level/rightcurve.xal +share/xblast/level/robbslevel.xal +share/xblast/level/rolandgarros.xal +share/xblast/level/round.xal +share/xblast/level/rows.xal +share/xblast/level/rubber_bombs.xal +share/xblast/level/run.xal +share/xblast/level/runfortherc.xal +share/xblast/level/running_man.xal +share/xblast/level/running_man_ii.xal +share/xblast/level/running_man_iia.xal +share/xblast/level/runrunlittlexblaster.xal +share/xblast/level/savage_shrinking_world.xal +share/xblast/level/save_your_dream.xal +share/xblast/level/scottie.xal +share/xblast/level/scramblezone.xal +share/xblast/level/screw_him.xal +share/xblast/level/search.xal +share/xblast/level/seek_n_destroy.xal +share/xblast/level/seethepattern.xal +share/xblast/level/semilocalcommunication.xal +share/xblast/level/serbocroate.xal +share/xblast/level/shrinking_arena.xal +share/xblast/level/shrinking_world.xal +share/xblast/level/shrinkmania.xal +share/xblast/level/sky_show.xal +share/xblast/level/slimdryandtrainee.xal +share/xblast/level/smile.xal +share/xblast/level/smile_and_die.xal +share/xblast/level/smileii.xal +share/xblast/level/snapshot_level.xal +share/xblast/level/sneakattack.xal +share/xblast/level/snooker.xal +share/xblast/level/snow_brothers.xal +share/xblast/level/snowflake.xal +share/xblast/level/snowland.xal +share/xblast/level/soccerfield.xal +share/xblast/level/someboms.xal +share/xblast/level/space_head.xal +share/xblast/level/sphere.xal +share/xblast/level/spider_web.xal +share/xblast/level/spiderworld.xal +share/xblast/level/spindizzy.xal +share/xblast/level/spiral.xal +share/xblast/level/spiral_ways.xal +share/xblast/level/split_decision.xal +share/xblast/level/spooky.xal +share/xblast/level/squaredancing.xal +share/xblast/level/squash.xal +share/xblast/level/star_hazzard.xal +share/xblast/level/star_wars.xal +share/xblast/level/starstruck.xal +share/xblast/level/stayinalive.xal +share/xblast/level/stochasticpolicy.xal +share/xblast/level/stoned.xal +share/xblast/level/stop.xal +share/xblast/level/stormy.xal +share/xblast/level/stunning.xal +share/xblast/level/stunning_renovation.xal +share/xblast/level/stunningyoustunningme.xal +share/xblast/level/suddendeath.xal +share/xblast/level/suicide.xal +share/xblast/level/superballs.xal +share/xblast/level/survival_of_the_fittest.xal +share/xblast/level/survivalofthemorphest.xal +share/xblast/level/survivor.xal +share/xblast/level/swapcol.xal +share/xblast/level/swappos.xal +share/xblast/level/swastika.xal +share/xblast/level/take_care_of_yourself.xal +share/xblast/level/takeafriendwithyou.xal +share/xblast/level/takecover.xal +share/xblast/level/tall_poppy.xal +share/xblast/level/tamachan.xal +share/xblast/level/tapettelandiii.xal +share/xblast/level/taramsrevenge.xal +share/xblast/level/teamwork.xal +share/xblast/level/teatime.xal +share/xblast/level/telecom.xal +share/xblast/level/teleportland.xal +share/xblast/level/temple_of_doom.xal +share/xblast/level/terroristattack.xal +share/xblast/level/tetris_land.xal +share/xblast/level/the_cave.xal +share/xblast/level/the_downward_spiral.xal +share/xblast/level/the_focal_point.xal +share/xblast/level/the_fundamental_error.xal +share/xblast/level/the_great_escape.xal +share/xblast/level/the_holy_grail.xal +share/xblast/level/the_hustler.xal +share/xblast/level/the_mega_bomberman_level.xal +share/xblast/level/the_neutral_zone.xal +share/xblast/level/the_not_so_holy_hand_grenade.xal +share/xblast/level/the_shafts.xal +share/xblast/level/the_xblast_level.xal +share/xblast/level/theembrace.xal +share/xblast/level/thefungusexpertandthedead.xal +share/xblast/level/thefungusgeneralandthedead.xal +share/xblast/level/thefungusmasterandthedead.xal +share/xblast/level/thegoodandthebad.xal +share/xblast/level/thehiddenandthedead.xal +share/xblast/level/thehourglass.xal +share/xblast/level/thelostcity.xal +share/xblast/level/theluckyandthedead.xal +share/xblast/level/thepusher.xal +share/xblast/level/thequickandthedead.xal +share/xblast/level/therandomandthedead.xal +share/xblast/level/theretourofsun.xal +share/xblast/level/thescrambledandthedead.xal +share/xblast/level/thetunnels.xal +share/xblast/level/three_times_the_pleasure.xal +share/xblast/level/tic_tac_toe.xal +share/xblast/level/timeisoftheessence.xal +share/xblast/level/titlemoutz.xal +share/xblast/level/tntsmugglers.xal +share/xblast/level/tobeamornottobeam.xal +share/xblast/level/toosicktobetrue.xal +share/xblast/level/tornado.xal +share/xblast/level/tournicotitournicoton.xal +share/xblast/level/tous_aux_abris.xal +share/xblast/level/toutencarton.xal +share/xblast/level/trainfun.xal +share/xblast/level/transformation.xal +share/xblast/level/treasure_hunt.xal +share/xblast/level/trench_warfare.xal +share/xblast/level/triangle_city.xal +share/xblast/level/triangleandrows.xal +share/xblast/level/trickyrunner.xal +share/xblast/level/trickywalls.xal +share/xblast/level/trop_puissant.xal +share/xblast/level/troppuissant.xal +share/xblast/level/trust_no_one.xal +share/xblast/level/try_it_and_see.xal +share/xblast/level/tubes.xal +share/xblast/level/turtle.xal +share/xblast/level/tv_star_wannabe.xal +share/xblast/level/two_be_two.xal +share/xblast/level/uptheygo.xal +share/xblast/level/variations.xal +share/xblast/level/villavictoria.xal +share/xblast/level/virus.xal +share/xblast/level/vivazapatta.xal +share/xblast/level/voidhazard.xal +share/xblast/level/voidie.xal +share/xblast/level/voidnightmare.xal +share/xblast/level/vrendsvallenplanb.xal +share/xblast/level/walls_or_not.xal +share/xblast/level/warning.xal +share/xblast/level/watch_out.xal +share/xblast/level/watch_that_banana.xal +share/xblast/level/watchthebirdie.xal +share/xblast/level/waterworld.xal +share/xblast/level/welcomeincorsica.xal +share/xblast/level/what_the_f_is_this.xal +share/xblast/level/when_i_was_your_age.xal +share/xblast/level/wherearethey.xal +share/xblast/level/whererumrmagoo.xal +share/xblast/level/windows_95.xal +share/xblast/level/withoutthestars.xal +share/xblast/level/woiii.xal +share/xblast/level/wonderwheel.xal +share/xblast/level/worldwideblast.xal +share/xblast/level/would_ya_likes_t_be_some_junkie.xal +share/xblast/level/wumpusworld.xal +share/xblast/level/xbclassical.xal +share/xblast/level/xblast_2000.xal +share/xblast/level/xblast_2001.xal +share/xblast/level/xblast_3000.xal +share/xblast/level/xblastlevels.xal +share/xblast/level/xfile.xal +share/xblast/level/xmorph.xal +share/xblast/level/y2k.xal +share/xblast/level/yellowbeans.xal +share/xblast/level/yellowfever.xal +share/xblast/level/yippee_map.xal +share/xblast/level/yomland.xal +share/xblast/level/ypsilon.xal +share/xblast/level/zero_infinity.xal +share/xblast/level/zigzag.xal +share/xblast/level/zoso_world.xal +%%WITH_SOUND%%share/xblast/sounds/xb_app2.raw +%%WITH_SOUND%%share/xblast/sounds/xb_appl.raw +%%WITH_SOUND%%share/xblast/sounds/xb_bad.raw +%%WITH_SOUND%%share/xblast/sounds/xb_bombmorph.raw +%%WITH_SOUND%%share/xblast/sounds/xb_butt.raw +%%WITH_SOUND%%share/xblast/sounds/xb_cmpnd.raw +%%WITH_SOUND%%share/xblast/sounds/xb_dead.raw +%%WITH_SOUND%%share/xblast/sounds/xb_drop.raw +%%WITH_SOUND%%share/xblast/sounds/xb_expl.raw +%%WITH_SOUND%%share/xblast/sounds/xb_haunt.raw +%%WITH_SOUND%%share/xblast/sounds/xb_intro.raw +%%WITH_SOUND%%share/xblast/sounds/xb_kick.raw +%%WITH_SOUND%%share/xblast/sounds/xb_nvis.raw +%%WITH_SOUND%%share/xblast/sounds/xb_nvnc.raw +%%WITH_SOUND%%share/xblast/sounds/xb_ouch.raw +%%WITH_SOUND%%share/xblast/sounds/xb_pump.raw +%%WITH_SOUND%%share/xblast/sounds/xb_shoot.raw +%%WITH_SOUND%%share/xblast/sounds/xb_spbmb.raw +%%WITH_SOUND%%share/xblast/sounds/xb_spir.raw +%%WITH_SOUND%%share/xblast/sounds/xb_stun.raw +%%WITH_SOUND%%share/xblast/sounds/xb_warn.raw +%%WITH_SOUND%%share/xblast/sounds/xb_whrl.raw +%%WITH_SOUND%%share/xblast/sounds/xb_won.raw +%%WITH_SOUND%%share/xblast/sounds/xbcloak.raw +%%WITH_SOUND%%share/xblast/sounds/xbcloakx.raw +%%WITH_SOUND%%share/xblast/sounds/xbdcloak.raw +%%WITH_SOUND%%share/xblast/sounds/xbfast.raw +%%WITH_SOUND%%share/xblast/sounds/xbfin.raw +%%WITH_SOUND%%share/xblast/sounds/xbfire.raw +%%WITH_SOUND%%share/xblast/sounds/xbholy.raw +%%WITH_SOUND%%share/xblast/sounds/xbinj.raw +%%WITH_SOUND%%share/xblast/sounds/xblife.raw +%%WITH_SOUND%%share/xblast/sounds/xbmbmb.raw +%%WITH_SOUND%%share/xblast/sounds/xbnbmb.raw +%%WITH_SOUND%%share/xblast/sounds/xbnkick.raw +%%WITH_SOUND%%share/xblast/sounds/xbnpmp.raw +%%WITH_SOUND%%share/xblast/sounds/xbnrc.raw +%%WITH_SOUND%%share/xblast/sounds/xbntel.raw +%%WITH_SOUND%%share/xblast/sounds/xbslay.raw +%%WITH_SOUND%%share/xblast/sounds/xbslide.raw +%%WITH_SOUND%%share/xblast/sounds/xbslow.raw +%%WITH_SOUND%%share/xblast/sounds/xbstep1.raw +%%WITH_SOUND%%share/xblast/sounds/xbstep2.raw +%%WITH_SOUND%%share/xblast/sounds/xbstep3.raw +%%WITH_SOUND%%share/xblast/sounds/xbstep4.raw +%%WITH_SOUND%%share/xblast/sounds/xbstep5.raw +%%WITH_SOUND%%share/xblast/sounds/xbstep6.raw +%%WITH_SOUND%%share/xblast/sounds/xbtele.raw +%%WITH_SOUND%%share/xblast/sounds/xbtele1.raw +%%WITH_SOUND%%share/xblast/sounds/xbtele2.raw +%%WITH_SOUND%%@dirrm share/xblast/sounds +@dirrm share/xblast/level +@dirrm share/xblast/image/sprite +@dirrm share/xblast/image/score +@dirrm share/xblast/image/misc +@dirrm share/xblast/image/explosion +@dirrm share/xblast/image/block +@dirrm share/xblast/image +@dirrm share/xblast |