diff options
author | garga <garga@FreeBSD.org> | 2006-03-15 10:46:39 +0000 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2006-03-15 10:46:39 +0000 |
commit | 8fc9088da21ea57c38e1a963b21e027f20e24eb1 (patch) | |
tree | fb57110cf9091720e26f1144aef8f35cf2fced49 /games | |
parent | 94c6a885d63cea7ff9b00f20923b4d55bb8f722b (diff) | |
download | FreeBSD-ports-8fc9088da21ea57c38e1a963b21e027f20e24eb1.zip FreeBSD-ports-8fc9088da21ea57c38e1a963b21e027f20e24eb1.tar.gz |
Add pysycache-themes 2.0, the pysycache themes support.
PR: ports/94005
Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
Diffstat (limited to 'games')
-rw-r--r-- | games/Makefile | 1 | ||||
-rw-r--r-- | games/pysycache-themes/Makefile | 143 | ||||
-rw-r--r-- | games/pysycache-themes/distinfo | 27 | ||||
-rw-r--r-- | games/pysycache-themes/pkg-descr | 3 | ||||
-rw-r--r-- | games/pysycache-themes/pkg-plist | 539 |
5 files changed, 713 insertions, 0 deletions
diff --git a/games/Makefile b/games/Makefile index d04e4ef..c5cd65f 100644 --- a/games/Makefile +++ b/games/Makefile @@ -484,6 +484,7 @@ SUBDIR += pysol-music SUBDIR += pysycache SUBDIR += pysycache-lang + SUBDIR += pysycache-themes SUBDIR += pythonchess SUBDIR += q15 SUBDIR += linux-quake3 diff --git a/games/pysycache-themes/Makefile b/games/pysycache-themes/Makefile new file mode 100644 index 0000000..61ea0bd --- /dev/null +++ b/games/pysycache-themes/Makefile @@ -0,0 +1,143 @@ +# New ports collection makefile for: pysycache-themes +# Date created: 2006-02-22 +# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> +# +# $FreeBSD$ +# + +PORTNAME= themes +PORTVERSION= 2.0 +CATEGORIES= games python +MASTER_SITES= http://themes.pysycache.free.fr/ +PKGNAMEPREFIX= pysycache- +DISTFILES= # +DIST_SUBDIR= pysycache + +MAINTAINER= acardenas@bsd.org.pe +COMMENT= The pysycache themes support + +RUN_DEPENDS= pysycache.py:${PORTSDIR}/games/pysycache + +USE_ZIP= yes +USE_X_PREFIX= yes +NO_BUILD= yes +WRKSRC= ${WRKDIR}/${PKGNAMEPREFIX}${PORTNAME} +DATADIR= ${PREFIX}/share/${DIST_SUBDIR} + +OPTIONS= ANIMALS_MOVE "Animals move mouse theme" off \ + EARTH_MOVE "Earth move mouse theme" off \ + FOOD_MOVE "Food move mouse theme" off \ + PLANTS_MOVE "Plants move mouse theme" off \ + SKY_MOVE "Sky move mouse theme" off \ + SPORTS_MOVE "Sports move mouse theme" off \ + VEHICLE_MOVE "Vehicle move mouse theme" off \ + WORLD_MOVE "World move mouse theme" off \ + AFRICA_ACTIVITY "Africa activity theme" off + +.include <bsd.port.pre.mk> + +.if defined(WITH_ANIMALS_MOVE) +DISTFILES+= animals-${PORTVERSION}.zip +PLIST_SUB+= ANIMALS="" +FLAG_THEME= true +HAVE_THEME+= animals +.else +PLIST_SUB+= ANIMALS="@comment " +.endif + +.if defined(WITH_EARTH_MOVE) +DISTFILES+= earth-${PORTVERSION}.zip +PLIST_SUB+= EARTH="" +FLAG_THEME= true +HAVE_THEME+= earth +.else +PLIST_SUB+= EARTH="@comment " +.endif + +.if defined(WITH_FOOD_MOVE) +DISTFILES+= food-${PORTVERSION}.zip +PLIST_SUB+= FOOD="" +FLAG_THEME= true +HAVE_THEME+= food +.else +PLIST_SUB+= FOOD="@comment " +.endif + +.if defined(WITH_PLANTS_MOVE) +DISTFILES+= plants-${PORTVERSION}.zip +PLIST_SUB+= PLANTS="" +FLAG_THEME= true +HAVE_THEME+= plants +.else +PLIST_SUB+= PLANTS="@comment " +.endif + +.if defined(WITH_SKY_MOVE) +DISTFILES+= sky-${PORTVERSION}.zip +PLIST_SUB+= SKY="" +FLAG_THEME= true +HAVE_THEME+= sky +.else +PLIST_SUB+= SKY="@comment " +.endif + +.if defined(WITH_SPORTS_MOVE) +DISTFILES+= sports-${PORTVERSION}.zip +PLIST_SUB+= SPORTS="" +FLAG_THEME= true +HAVE_THEME+= sports +.else +PLIST_SUB+= SPORTS="@comment " +.endif + +.if defined(WITH_VEHICLE_MOVE) +DISTFILES+= vehicle-${PORTVERSION}.zip +PLIST_SUB+= VEHICLE="" +FLAG_THEME= true +HAVE_THEME+= vehicle +.else +PLIST_SUB+= VEHICLE="@comment " +.endif + +.if defined(WITH_WORLD_MOVE) +DISTFILES+= world-${PORTVERSION}.zip +PLIST_SUB+= WORLD="" +FLAG_THEME= true +HAVE_THEME+= world +.else +PLIST_SUB+= WORLD="@comment " +.endif + +.if defined(WITH_AFRICA_ACTIVITY) +DISTFILES+= africa-${PORTVERSION}.zip +PLIST_SUB+= AFRICA="" +FLAG_THEME= true +HAVE_THEME+= africa +.else +PLIST_SUB+= AFRICA="@comment " +.endif + +pre-fetch: +.if defined(FLAG_THEME) + @${TRUE} +.else + @${ECHO} "######################" + @${ECHO} "# #" + @${ECHO} "# No themes selected #" + @${ECHO} "# #" + @${ECHO} "######################" + @${FALSE} +.endif + +do-extract: + @${MKDIR} ${WRKSRC} +.for OPT in ${HAVE_THEME} + @${UNZIP_CMD} -q ${_DISTDIR}/${OPT}-${PORTVERSION}.zip -d ${WRKSRC} +.endfor + +do-install: + @cd ${WRKSRC} && \ + ${FIND} * -type d -exec ${MKDIR} "${DATADIR}/{}" \; && \ + ${FIND} * -type f -exec ${INSTALL_DATA} "{}" "${DATADIR}/{}" \; + +.include <bsd.port.post.mk> diff --git a/games/pysycache-themes/distinfo b/games/pysycache-themes/distinfo new file mode 100644 index 0000000..1f2cf95 --- /dev/null +++ b/games/pysycache-themes/distinfo @@ -0,0 +1,27 @@ +MD5 (pysycache/animals-2.0.zip) = f584d3f1e72fef0ed47cee4af497a40c +SHA256 (pysycache/animals-2.0.zip) = a279f78859e173e58346b6cc2683eec6938e5781cbcf4536e5fea19d809d8c2f +SIZE (pysycache/animals-2.0.zip) = 3189488 +MD5 (pysycache/africa-2.0.zip) = 824d34a47af61c797f361e00db88313c +SHA256 (pysycache/africa-2.0.zip) = cd02217ce3e3c5ca733d9feb041dd94fb369dc0c55f6b15a35c27cabbdd2a607 +SIZE (pysycache/africa-2.0.zip) = 3137820 +MD5 (pysycache/earth-2.0.zip) = fa026c9ad0d2d717642673db278b970b +SHA256 (pysycache/earth-2.0.zip) = 3682f9dc1ec0e3ae37209504c4c2f90448b9affbcddf143d59ccecac9fdde0fb +SIZE (pysycache/earth-2.0.zip) = 3122814 +MD5 (pysycache/food-2.0.zip) = c4874cbb9490a45ef2c0c1ddb8f5c6c8 +SHA256 (pysycache/food-2.0.zip) = fdf6ff125a4d10c6ad6ba022288c1a790c76729117a9a2f7f53b0b6396c51ecd +SIZE (pysycache/food-2.0.zip) = 2263764 +MD5 (pysycache/plants-2.0.zip) = 39fc4fe99dbf9e8e4a6cb0052824f25e +SHA256 (pysycache/plants-2.0.zip) = 4ecc93aad018cbcc4f0b4c24c1f5dad64dc20dbb1972d4b2582dbdfdbda4cc2c +SIZE (pysycache/plants-2.0.zip) = 2043971 +MD5 (pysycache/sky-2.0.zip) = 71926029f2b0804960e073cf3df087d0 +SHA256 (pysycache/sky-2.0.zip) = 66e629022ad4fd6cb62298f86f84a938dcf16c5ec69ada99a6ae068c772eb659 +SIZE (pysycache/sky-2.0.zip) = 1169367 +MD5 (pysycache/sports-2.0.zip) = 60669963f0d2bf012a7bcaef842521a4 +SHA256 (pysycache/sports-2.0.zip) = d3d6d9e9e51934ba9a4c13845e57536b9c5de7091c8a907d8ff9a576c9a72ea4 +SIZE (pysycache/sports-2.0.zip) = 2008291 +MD5 (pysycache/vehicle-2.0.zip) = 9d2c641d0c3c7cbed5f6ac24a1946c85 +SHA256 (pysycache/vehicle-2.0.zip) = cd13606b13d68b682c23eef90d51e4be999c247f5ba8a42983076386f33f13c0 +SIZE (pysycache/vehicle-2.0.zip) = 2834696 +MD5 (pysycache/world-2.0.zip) = af8328c7ba51ec52625ccff112c284dc +SHA256 (pysycache/world-2.0.zip) = 94ab5fc76eecd0e03f035ac11668e9e614ce2b33d998fd64445c849defdc36f3 +SIZE (pysycache/world-2.0.zip) = 4028829 diff --git a/games/pysycache-themes/pkg-descr b/games/pysycache-themes/pkg-descr new file mode 100644 index 0000000..406f461 --- /dev/null +++ b/games/pysycache-themes/pkg-descr @@ -0,0 +1,3 @@ +The pysycache theme files supported. + +WWW: http://www.pysycache.org/ diff --git a/games/pysycache-themes/pkg-plist b/games/pysycache-themes/pkg-plist new file mode 100644 index 0000000..9bfb26f --- /dev/null +++ b/games/pysycache-themes/pkg-plist @@ -0,0 +1,539 @@ +%%AFRICA%%%%DATADIR%%/themes-click/africa/0007.dfg +%%AFRICA%%%%DATADIR%%/themes-click/africa/0006.dfg +%%AFRICA%%%%DATADIR%%/themes-click/africa/0002.dfg +%%AFRICA%%%%DATADIR%%/themes-click/africa/1013-on.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1013-off.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1012-on.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1012-off.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1011-on.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1011-off.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1012.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1010-off.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1009.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1010-on.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1009-off.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1013.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1008.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1009-on.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/0004.dfg +%%AFRICA%%%%DATADIR%%/themes-click/africa/1005.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1000.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1001.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/0003.dfg +%%AFRICA%%%%DATADIR%%/themes-click/africa/1002.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/0005.dfg +%%AFRICA%%%%DATADIR%%/themes-click/africa/0001.dfg +%%AFRICA%%%%DATADIR%%/themes-click/africa/1004.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1007.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/fond.bmp +%%AFRICA%%%%DATADIR%%/themes-click/africa/copyright.txt +%%AFRICA%%%%DATADIR%%/themes-click/africa/1008-off.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1008-on.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1007-off.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/logo.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1003.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1006.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1007-on.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1006-on.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1006-off.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1011.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1010.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1005-off.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1005-on.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1004-off.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1004-on.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1003-on.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1003-off.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1002-off.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1002-on.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1001-off.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1001-on.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1000-on.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/1000-off.png +%%AFRICA%%%%DATADIR%%/themes-click/africa/credits.txt +%%ANIMALS%%%%DATADIR%%/themes-move/animals/copyright.txt +%%ANIMALS%%%%DATADIR%%/themes-move/animals/credits.txt +%%ANIMALS%%%%DATADIR%%/themes-move/animals/logo.png +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a11.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a10.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a23.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a22.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a22.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a21.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a21.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a20.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a20.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a19.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a19.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a18.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a18.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a17.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a09.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a08.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a07.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a06.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a05.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a04.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a03.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a02.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a24.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/b01.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/cache-avion.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a24.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a23.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a22.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a21.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a20.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a19.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a18.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a17.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a16.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a15.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a14.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a13.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a01.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a02.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a03.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a04.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a05.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a06.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a07.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a08.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a09.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a10.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a11.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a12.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/cache/a00.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a01.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a00.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a17.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a01.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a02.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a03.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a04.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a05.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a06.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a07.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a08.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a09.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a10.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a11.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a16.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a16.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a15.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a15.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a14.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a14.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a13.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a23.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a13.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a12.jpeg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a12.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a24.dfg +%%ANIMALS%%%%DATADIR%%/themes-move/animals/a00.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/a11.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/206.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/631.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/529.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/credits.txt +%%EARTH%%%%DATADIR%%/themes-move/earth/copyright.txt +%%EARTH%%%%DATADIR%%/themes-move/earth/a00.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/629.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/113.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/00070.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/cache-avion.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/00034.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/206.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/2105.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/2112.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/2116.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/529.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/576.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/631.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/a14.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/a04.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/a11.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/a00.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/cache/629.jpg +%%EARTH%%%%DATADIR%%/themes-move/earth/a14.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/a04.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/a00.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/a04.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/logo.png +%%EARTH%%%%DATADIR%%/themes-move/earth/206.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/113.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/a11.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/a14.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/576.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/629.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/629.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/2112.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/00034.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/00034.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/113.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/00070.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/529.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/00070.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/2105.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/2116.jpeg +%%EARTH%%%%DATADIR%%/themes-move/earth/2105.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/2112.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/2116.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/576.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/631.dfg +%%EARTH%%%%DATADIR%%/themes-move/earth/629.dfg~ +%%FOOD%%%%DATADIR%%/themes-move/food/credits.txt +%%FOOD%%%%DATADIR%%/themes-move/food/a00.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a01.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a02.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a03.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a04.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a05.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a06.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a07.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a08.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a09.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a10.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a11.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a12.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a13.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/cache-avion.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a01.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a02.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a03.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a04.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a05.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a06.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a07.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a08.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a09.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a10.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a11.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a12.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a13.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a14.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a15.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/cache/a00.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/copyright.txt +%%FOOD%%%%DATADIR%%/themes-move/food/logo.png +%%FOOD%%%%DATADIR%%/themes-move/food/a00.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a14.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a15.jpeg +%%FOOD%%%%DATADIR%%/themes-move/food/a01.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a02.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a03.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a04.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a05.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a06.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a07.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a08.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a09.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a10.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a11.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a12.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a13.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a14.dfg +%%FOOD%%%%DATADIR%%/themes-move/food/a15.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a09.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a08.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a07.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/copyright.txt +%%PLANTS%%%%DATADIR%%/themes-move/plants/credits.txt +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/cache-avion.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/a07.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/a08.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/a09.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/a10.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/a01.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/a02.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/a03.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/a04.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/a05.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/a06.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/a11.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/607.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/00002.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/636.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/cache/a00.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/logo.png +%%PLANTS%%%%DATADIR%%/themes-move/plants/a05.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a04.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a03.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a02.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a01.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a00.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a00.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a01.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a10.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a11.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a02.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a03.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a04.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a05.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a07.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a08.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a09.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a10.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a11.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a06.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/a06.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/607.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/607.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/00002.dfg +%%PLANTS%%%%DATADIR%%/themes-move/plants/636.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/00002.jpeg +%%PLANTS%%%%DATADIR%%/themes-move/plants/636.dfg +%%SKY%%%%DATADIR%%/themes-move/sky/credits.txt +%%SKY%%%%DATADIR%%/themes-move/sky/a04.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/a04.dfg +%%SKY%%%%DATADIR%%/themes-move/sky/a02.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/a03.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/a01.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/cache/a05.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/cache/cache-avion.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/cache/a02.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/cache/a03.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/cache/a04.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/cache/a01.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/cache/a08.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/cache/a07.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/cache/a06.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/cache/a10.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/cache/a11.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/cache/a09.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/cache/a00.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/cache/a06b.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/copyright.txt +%%SKY%%%%DATADIR%%/themes-move/sky/logo.png +%%SKY%%%%DATADIR%%/themes-move/sky/a10.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/a05.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/a06.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/a07.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/a08.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/a01.dfg +%%SKY%%%%DATADIR%%/themes-move/sky/a09.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/a11.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/a00.jpeg +%%SKY%%%%DATADIR%%/themes-move/sky/a02.dfg +%%SKY%%%%DATADIR%%/themes-move/sky/a03.dfg +%%SKY%%%%DATADIR%%/themes-move/sky/a00.dfg +%%SKY%%%%DATADIR%%/themes-move/sky/a05.dfg +%%SKY%%%%DATADIR%%/themes-move/sky/a06.dfg +%%SKY%%%%DATADIR%%/themes-move/sky/a07.dfg +%%SKY%%%%DATADIR%%/themes-move/sky/a08.dfg +%%SKY%%%%DATADIR%%/themes-move/sky/a09.dfg +%%SKY%%%%DATADIR%%/themes-move/sky/a10.dfg +%%SKY%%%%DATADIR%%/themes-move/sky/a11.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a09.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a08.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/copyright.txt +%%SPORTS%%%%DATADIR%%/themes-move/sports/credits.txt +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/cache-avion.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/a09.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/a10.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/a01.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/a02.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/a03.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/a04.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/a05.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/a06.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/a07.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/a08.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/00114.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/406.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/00056.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/00055.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/a00.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/cache/a2100.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/logo.png +%%SPORTS%%%%DATADIR%%/themes-move/sports/a07.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a06.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a05.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a04.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a03.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a02.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a01.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a00.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a00.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a10.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a01.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a02.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a03.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a04.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a05.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a06.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a07.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a08.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a09.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a10.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a2100.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/a2100.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/406.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/00056.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/00056.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/406.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/00114.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/00114.dfg +%%SPORTS%%%%DATADIR%%/themes-move/sports/00055.jpeg +%%SPORTS%%%%DATADIR%%/themes-move/sports/00055.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/copyright.txt +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a06.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/credits.txt +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a07.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/cache-avion.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/a07.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/a08.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/a01.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/a02.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/a03.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/a04.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/a05.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/a06.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/a09.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/a10.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/a11.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/a12.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/a14.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/415.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/2009.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/411.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/427.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/562.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/580.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/634.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/cache/a00.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/logo.png +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a05.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a04.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a03.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a02.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a01.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a00.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a10.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a00.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a09.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a12.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a11.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a08.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a01.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a02.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a03.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a04.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a05.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a06.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a07.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a08.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a09.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a10.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a11.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/a12.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/580.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/2009.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/427.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/411.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/634.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/562.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/2009.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/562.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/415.jpeg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/580.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/411.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/427.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/634.dfg +%%VEHICLE%%%%DATADIR%%/themes-move/vehicle/415.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/copyright.txt +%%WORLD%%%%DATADIR%%/themes-move/world/a19.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a16.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a10.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/credits.txt +%%WORLD%%%%DATADIR%%/themes-move/world/logo.png +%%WORLD%%%%DATADIR%%/themes-move/world/a06.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a05.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a18.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a00.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/cache-avion.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a14.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a15.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a16.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a13.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a17.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a01.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a02.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a03.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a04.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a05.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a06.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a07.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a18.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a19.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a20.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a10.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a09.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a08.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/514.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/528.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/107.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/00093.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/503.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a00.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/cache/a01b.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a04.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a03.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a02.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a01.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a00.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a17.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a15.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a14.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a20.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a13.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a01.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a02.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a03.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a04.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a05.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a06.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a10.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a13.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a14.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a15.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a16.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a17.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a18.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a19.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a20.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a09.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a09.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a08.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a08.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/a07.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/a07.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/107.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/514.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/503.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/107.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/528.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/00093.jpeg +%%WORLD%%%%DATADIR%%/themes-move/world/528.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/503.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/514.dfg +%%WORLD%%%%DATADIR%%/themes-move/world/00093.dfg +%%AFRICA%%@dirrm %%DATADIR%%/themes-click/africa +@dirrmtry %%DATADIR%%/themes-click +%%ANIMALS%%@dirrm %%DATADIR%%/themes-move/animals/cache +%%ANIMALS%%@dirrm %%DATADIR%%/themes-move/animals +%%EARTH%%@dirrm %%DATADIR%%/themes-move/earth/cache +%%EARTH%%@dirrm %%DATADIR%%/themes-move/earth +%%FOOD%%@dirrm %%DATADIR%%/themes-move/food/cache +%%FOOD%%@dirrm %%DATADIR%%/themes-move/food +%%PLANTS%%@dirrm %%DATADIR%%/themes-move/plants/cache +%%PLANTS%%@dirrm %%DATADIR%%/themes-move/plants +%%SKY%%@dirrm %%DATADIR%%/themes-move/sky/cache +%%SKY%%@dirrm %%DATADIR%%/themes-move/sky +%%SPORTS%%@dirrm %%DATADIR%%/themes-move/sports/cache +%%SPORTS%%@dirrm %%DATADIR%%/themes-move/sports +%%VEHICLE%%@dirrm %%DATADIR%%/themes-move/vehicle/cache +%%VEHICLE%%@dirrm %%DATADIR%%/themes-move/vehicle +%%WORLD%%@dirrm %%DATADIR%%/themes-move/world/cache +%%WORLD%%@dirrm %%DATADIR%%/themes-move/world +@dirrmtry %%DATADIR%%/themes-move |