aboutsummaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorMax Brazhnikov <makc@FreeBSD.org>2020-08-21 19:56:36 +0000
committerMax Brazhnikov <makc@FreeBSD.org>2020-08-21 19:56:36 +0000
commit50bb641c27f05a7cad27a1102b3570bc420a9ca9 (patch)
treeaa5e3ee11983ab4e26f48a59c5d5f7f08c3fd83d /games
parentd351bbeabdcf4e830b833ae9f534e5fd9282053c (diff)
downloadports-50bb641c27f05a7cad27a1102b3570bc420a9ca9.tar.gz
ports-50bb641c27f05a7cad27a1102b3570bc420a9ca9.zip
games/colobot: fix build with Python 3 and restore port
Notes
Notes: svn path=/head/; revision=545621
Diffstat (limited to 'games')
-rw-r--r--games/Makefile1
-rw-r--r--games/colobot/Makefile54
-rw-r--r--games/colobot/distinfo7
-rw-r--r--games/colobot/files/patch-data_CMakeLists.txt11
-rw-r--r--games/colobot/files/patch-src_object_task_taskgoto.h11
-rw-r--r--games/colobot/pkg-descr11
-rw-r--r--games/colobot/pkg-plist3673
7 files changed, 3768 insertions, 0 deletions
diff --git a/games/Makefile b/games/Makefile
index 60c9456c825e..c4f6fffa47a4 100644
--- a/games/Makefile
+++ b/games/Makefile
@@ -145,6 +145,7 @@
SUBDIR += circuslinux
SUBDIR += cockatrice
SUBDIR += coffeebreak
+ SUBDIR += colobot
SUBDIR += colorcode
SUBDIR += columns
SUBDIR += concentration
diff --git a/games/colobot/Makefile b/games/colobot/Makefile
new file mode 100644
index 000000000000..ea0f23ae45ae
--- /dev/null
+++ b/games/colobot/Makefile
@@ -0,0 +1,54 @@
+# $FreeBSD$
+
+PORTNAME= colobot
+DISTVERSIONPREFIX= ${PORTNAME}-gold-
+DISTVERSION= 0.1.12
+DISTVERSIONSUFFIX= -alpha
+PORTREVISION= 5
+CATEGORIES= games
+MASTER_SITES= https://colobot.info/files/music/:music
+DISTFILES= colobot-music_ogg_0.1.12-alpha.tar.gz:music
+
+MAINTAINER= makc@FreeBSD.org
+COMMENT= Educational game aiming to teach programming to kids
+
+LICENSE= GPLv3
+LICENSE_FILE= ${WRKSRC}/LICENSE.txt
+
+LIB_DEPENDS= libpng.so:graphics/png \
+ libsndfile.so:audio/libsndfile \
+ libvorbis.so:audio/libvorbis \
+ libogg.so:audio/libogg \
+ libopenal.so:audio/openal-soft \
+ libphysfs.so:devel/physfs \
+ libboost_system.so:devel/boost-libs
+
+USES= cmake compiler:c++11-lang gl gettext-runtime \
+ gettext-tools:build localbase:ldflags openal python:build \
+ sdl shebangfix
+USE_SDL= image2 ttf2
+USE_GL= gl glew glu
+USE_LDCONFIG= yes
+
+USE_GITHUB= yes
+GH_TUPLE= colobot:colobot-data:c467bd9:data
+
+LDFLAGS_i386= -Wl,-znotext
+SHEBANG_FILES= data/i18n-tools/scripts/process_translations.py
+
+post-extract:
+ @${MV} ${WRKDIR}/colobot-data-c467bd9/* ${WRKSRC}/data
+ @${MV} ${WRKDIR}/*.ogg ${WRKDIR}/LICENSE.txt ${WRKSRC}/data/music/
+ @${REINPLACE_CMD} 's|$${CMAKE_INSTALL_PREFIX}/games|$${CMAKE_INSTALL_PREFIX}/bin|g' ${WRKSRC}/CMakeLists.txt
+ @${REINPLACE_CMD} 's|PLATFORM_MACOSX|PLATFORM_MACOSX OR PLATFORM_OTHER|g' ${WRKSRC}/src/CMakeLists.txt
+
+post-patch:
+ @${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/cmake/FindGLEW.cmake
+ @${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/cmake/FindPhysFS.cmake
+ @${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/cmake/FindSDL2.cmake
+ @${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/cmake/FindSDL2_image.cmake
+ @${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/cmake/FindSDL2_ttf.cmake
+ @${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/tools/check-levels.sh
+ ${REINPLACE_CMD} 's|python|${PYTHON_CMD}|' ${WRKSRC}/data/tools/*.sh
+
+.include <bsd.port.mk>
diff --git a/games/colobot/distinfo b/games/colobot/distinfo
new file mode 100644
index 000000000000..b14d49bc200e
--- /dev/null
+++ b/games/colobot/distinfo
@@ -0,0 +1,7 @@
+TIMESTAMP = 1551719919
+SHA256 (colobot-music_ogg_0.1.12-alpha.tar.gz) = 55e89d244f1f63e2467ef71253ca881ee31279f02aac9ac4706ef26c466306e9
+SIZE (colobot-music_ogg_0.1.12-alpha.tar.gz) = 55596353
+SHA256 (colobot-colobot-colobot-gold-0.1.12-alpha_GH0.tar.gz) = 38e01a6fb8c670203b86e7a100c79ed4ab4a9a4dcc01fd26a6a57f40fa1a8b5c
+SIZE (colobot-colobot-colobot-gold-0.1.12-alpha_GH0.tar.gz) = 1468594
+SHA256 (colobot-colobot-data-c467bd9_GH0.tar.gz) = 4a6a53ea22970870d05a12ebf56f595d34d765a789ab3b0aae618f2747312c35
+SIZE (colobot-colobot-data-c467bd9_GH0.tar.gz) = 54728879
diff --git a/games/colobot/files/patch-data_CMakeLists.txt b/games/colobot/files/patch-data_CMakeLists.txt
new file mode 100644
index 000000000000..456d19b6661f
--- /dev/null
+++ b/games/colobot/files/patch-data_CMakeLists.txt
@@ -0,0 +1,11 @@
+--- data/CMakeLists.txt.orig 2019-02-23 19:01:32 UTC
++++ data/CMakeLists.txt
+@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.8)
+ option(TRANSLATIONS "Enable translations of help and level files" ON)
+
+ if(TRANSLATIONS)
+- find_package(PythonInterp 2.7 REQUIRED)
++ find_package(PythonInterp REQUIRED)
+ else()
+ message(STATUS "Translations disabled; only English files will be installed")
+ endif()
diff --git a/games/colobot/files/patch-src_object_task_taskgoto.h b/games/colobot/files/patch-src_object_task_taskgoto.h
new file mode 100644
index 000000000000..1ed370fc0815
--- /dev/null
+++ b/games/colobot/files/patch-src_object_task_taskgoto.h
@@ -0,0 +1,11 @@
+--- src/object/task/taskgoto.h.orig 2019-10-18 08:14:46 UTC
++++ src/object/task/taskgoto.h
+@@ -147,7 +147,7 @@ class CTaskGoto : public CForegroundTask (protected)
+ int m_bmTotal = 0; // number of points in m_bmPoints
+ int m_bmIndex = 0; // index in m_bmPoints
+ Math::Vector m_bmPoints[MAXPOINTS+2];
+- char m_bmIter[MAXPOINTS+2] = {};
++ signed char m_bmIter[MAXPOINTS+2] = {};
+ int m_bmIterCounter = 0;
+ CObject* m_bmCargoObject = nullptr;
+ float m_bmFinalMove = 0.0f; // final advance distance
diff --git a/games/colobot/pkg-descr b/games/colobot/pkg-descr
new file mode 100644
index 000000000000..b623c48aef55
--- /dev/null
+++ b/games/colobot/pkg-descr
@@ -0,0 +1,11 @@
+Colobot is an educational real-time strategy video game featuring 3D graphics.
+The objective of the game is to find a planet for colonization by the human race
+by establishing a basic infrastructure on the surface and eliminating any alien
+life forms endangering the expedition
+
+You can program your units (bots) in a language called CBOT, which is
+similar to C++ and Java. Your mission is to find a new planet to live and
+survive. You can save the humanity and get programming skills!
+
+
+WWW: https://colobot.info/
diff --git a/games/colobot/pkg-plist b/games/colobot/pkg-plist
new file mode 100644
index 000000000000..e85ddcd5ab40
--- /dev/null
+++ b/games/colobot/pkg-plist
@@ -0,0 +1,3673 @@
+bin/colobot
+lib/colobot/libCBot.so
+share/games/colobot/ai/ant01.txt
+share/games/colobot/ai/ant02.txt
+share/games/colobot/ai/ant03.txt
+share/games/colobot/ai/ant04.txt
+share/games/colobot/ai/ant05.txt
+share/games/colobot/ai/ant06.txt
+share/games/colobot/ai/ant07.txt
+share/games/colobot/ai/ant08.txt
+share/games/colobot/ai/ant09.txt
+share/games/colobot/ai/ant10.txt
+share/games/colobot/ai/ant11.txt
+share/games/colobot/ai/ant12.txt
+share/games/colobot/ai/antatt30.txt
+share/games/colobot/ai/antattaw.txt
+share/games/colobot/ai/antattsw.txt
+share/games/colobot/ai/antec.txt
+share/games/colobot/ai/antice.txt
+share/games/colobot/ai/antich.txt
+share/games/colobot/ai/antich2.txt
+share/games/colobot/ai/anticp.txt
+share/games/colobot/ai/antics.txt
+share/games/colobot/ai/antict.txt
+share/games/colobot/ai/anticv.txt
+share/games/colobot/ai/antsurp1.txt
+share/games/colobot/ai/antsurp2.txt
+share/games/colobot/ai/antt41.txt
+share/games/colobot/ai/antt42.txt
+share/games/colobot/ai/antt43.txt
+share/games/colobot/ai/charge1.txt
+share/games/colobot/ai/charge2.txt
+share/games/colobot/ai/charge3.txt
+share/games/colobot/ai/convert.txt
+share/games/colobot/ai/exchg1.txt
+share/games/colobot/ai/flash.txt
+share/games/colobot/ai/human01.txt
+share/games/colobot/ai/human02.txt
+share/games/colobot/ai/human03.txt
+share/games/colobot/ai/human04.txt
+share/games/colobot/ai/human05.txt
+share/games/colobot/ai/human06.txt
+share/games/colobot/ai/human07.txt
+share/games/colobot/ai/kill1.txt
+share/games/colobot/ai/lady01.txt
+share/games/colobot/ai/lady02.txt
+share/games/colobot/ai/run1.txt
+share/games/colobot/ai/shield01.txt
+share/games/colobot/ai/shield02.txt
+share/games/colobot/ai/shield03.txt
+share/games/colobot/ai/spider01.txt
+share/games/colobot/ai/spider02.txt
+share/games/colobot/ai/spider03.txt
+share/games/colobot/ai/spidict.txt
+share/games/colobot/ai/strain1.txt
+share/games/colobot/ai/strain2.txt
+share/games/colobot/ai/tant1.txt
+share/games/colobot/ai/tant2.txt
+share/games/colobot/ai/tant3.txt
+share/games/colobot/ai/tant4.txt
+share/games/colobot/ai/tant5.txt
+share/games/colobot/ai/tcell1.txt
+share/games/colobot/ai/tcell2.txt
+share/games/colobot/ai/tchasse1.txt
+share/games/colobot/ai/tchasse2.txt
+share/games/colobot/ai/tchasse3.txt
+share/games/colobot/ai/tchasse4.txt
+share/games/colobot/ai/tchasse5.txt
+share/games/colobot/ai/tdragst.txt
+share/games/colobot/ai/tevite.txt
+share/games/colobot/ai/texch1.txt
+share/games/colobot/ai/texch2.txt
+share/games/colobot/ai/tfollow1.txt
+share/games/colobot/ai/tfollow2.txt
+share/games/colobot/ai/tfor.txt
+share/games/colobot/ai/tfor2.txt
+share/games/colobot/ai/titan1.txt
+share/games/colobot/ai/titan2.txt
+share/games/colobot/ai/titan3.txt
+share/games/colobot/ai/titan4.txt
+share/games/colobot/ai/tlaby1.txt
+share/games/colobot/ai/tlaby2.txt
+share/games/colobot/ai/tmove1.txt
+share/games/colobot/ai/tmove2.txt
+share/games/colobot/ai/tmove3.txt
+share/games/colobot/ai/tower1.txt
+share/games/colobot/ai/tproc1.txt
+share/games/colobot/ai/tproc2.txt
+share/games/colobot/ai/tprot1.txt
+share/games/colobot/ai/tprot1a.txt
+share/games/colobot/ai/tradar1.txt
+share/games/colobot/ai/tradar2.txt
+share/games/colobot/ai/tremot1a.txt
+share/games/colobot/ai/tremot1b.txt
+share/games/colobot/ai/tremot2a.txt
+share/games/colobot/ai/tremot2b.txt
+share/games/colobot/ai/tremot3a.txt
+share/games/colobot/ai/tremot3b.txt
+share/games/colobot/ai/tremot4a.txt
+share/games/colobot/ai/tremot4b.txt
+share/games/colobot/ai/tremot5a.txt
+share/games/colobot/ai/tremot5b.txt
+share/games/colobot/ai/tremova1.txt
+share/games/colobot/ai/tremova2.txt
+share/games/colobot/ai/tremova3.txt
+share/games/colobot/ai/tremova4.txt
+share/games/colobot/ai/trepulse.txt
+share/games/colobot/ai/tsniff.txt
+share/games/colobot/ai/tspid1.txt
+share/games/colobot/ai/tspid2.txt
+share/games/colobot/ai/tspid3.txt
+share/games/colobot/ai/ttit1.txt
+share/games/colobot/ai/ttit2.txt
+share/games/colobot/ai/ttrap1.txt
+share/games/colobot/ai/ttrap2.txt
+share/games/colobot/ai/twasp1.txt
+share/games/colobot/ai/twasp2.txt
+share/games/colobot/ai/wait.txt
+share/games/colobot/ai/wasp01.txt
+share/games/colobot/ai/wasp02.txt
+share/games/colobot/ai/wasp03.txt
+share/games/colobot/ai/waspe1.txt
+share/games/colobot/ai/win904a.txt
+share/games/colobot/ai/win904b.txt
+share/games/colobot/ai/win904c.txt
+share/games/colobot/ai/wingsh02.txt
+share/games/colobot/ai/wingshoo.txt
+share/games/colobot/ai/worm01.txt
+share/games/colobot/ai/worm02.txt
+share/games/colobot/ai/worm03.txt
+share/games/colobot/fonts/LICENSE.txt
+share/games/colobot/fonts/dvu_sans.ttf
+share/games/colobot/fonts/dvu_sans_bold.ttf
+share/games/colobot/fonts/dvu_sans_italic.ttf
+share/games/colobot/fonts/dvu_sans_mono.ttf
+share/games/colobot/fonts/dvu_sans_mono_bold.ttf
+share/games/colobot/help/B/authors.txt
+share/games/colobot/help/B/battles.txt
+share/games/colobot/help/B/cbot.txt
+share/games/colobot/help/B/cbot/abstime.txt
+share/games/colobot/help/B/cbot/acos.txt
+share/games/colobot/help/B/cbot/aim.txt
+share/games/colobot/help/B/cbot/array.txt
+share/games/colobot/help/B/cbot/asin.txt
+share/games/colobot/help/B/cbot/atan.txt
+share/games/colobot/help/B/cbot/atan2.txt
+share/games/colobot/help/B/cbot/bloc.txt
+share/games/colobot/help/B/cbot/bool.txt
+share/games/colobot/help/B/cbot/break.txt
+share/games/colobot/help/B/cbot/build.txt
+share/games/colobot/help/B/cbot/buildingenabled.txt
+share/games/colobot/help/B/cbot/busy.txt
+share/games/colobot/help/B/cbot/canbuild.txt
+share/games/colobot/help/B/cbot/canresearch.txt
+share/games/colobot/help/B/cbot/category.txt
+share/games/colobot/help/B/cbot/ceil.txt
+share/games/colobot/help/B/cbot/class.txt
+share/games/colobot/help/B/cbot/close.txt
+share/games/colobot/help/B/cbot/colors.txt
+share/games/colobot/help/B/cbot/cond.txt
+share/games/colobot/help/B/cbot/continue.txt
+share/games/colobot/help/B/cbot/cos.txt
+share/games/colobot/help/B/cbot/deletef.txt
+share/games/colobot/help/B/cbot/delinfo.txt
+share/games/colobot/help/B/cbot/destroy.txt
+share/games/colobot/help/B/cbot/detect.txt
+share/games/colobot/help/B/cbot/direct.txt
+share/games/colobot/help/B/cbot/dist.txt
+share/games/colobot/help/B/cbot/dist2d.txt
+share/games/colobot/help/B/cbot/do.txt
+share/games/colobot/help/B/cbot/drop.txt
+share/games/colobot/help/B/cbot/eof.txt
+share/games/colobot/help/B/cbot/errmode.txt
+share/games/colobot/help/B/cbot/expr.txt
+share/games/colobot/help/B/cbot/extends.txt
+share/games/colobot/help/B/cbot/extern.txt
+share/games/colobot/help/B/cbot/factory.txt
+share/games/colobot/help/B/cbot/false.txt
+share/games/colobot/help/B/cbot/file.txt
+share/games/colobot/help/B/cbot/fire.txt
+share/games/colobot/help/B/cbot/flatgrnd.txt
+share/games/colobot/help/B/cbot/flatspace.txt
+share/games/colobot/help/B/cbot/float.txt
+share/games/colobot/help/B/cbot/floor.txt
+share/games/colobot/help/B/cbot/for.txt
+share/games/colobot/help/B/cbot/function.txt
+share/games/colobot/help/B/cbot/goto.txt
+share/games/colobot/help/B/cbot/grab.txt
+share/games/colobot/help/B/cbot/if.txt
+share/games/colobot/help/B/cbot/int.txt
+share/games/colobot/help/B/cbot/jet.txt
+share/games/colobot/help/B/cbot/message.txt
+share/games/colobot/help/B/cbot/motor.txt
+share/games/colobot/help/B/cbot/move.txt
+share/games/colobot/help/B/cbot/nan.txt
+share/games/colobot/help/B/cbot/new.txt
+share/games/colobot/help/B/cbot/null.txt
+share/games/colobot/help/B/cbot/object.txt
+share/games/colobot/help/B/cbot/open.txt
+share/games/colobot/help/B/cbot/openfile.txt
+share/games/colobot/help/B/cbot/pencolor.txt
+share/games/colobot/help/B/cbot/pendown.txt
+share/games/colobot/help/B/cbot/penup.txt
+share/games/colobot/help/B/cbot/penwidth.txt
+share/games/colobot/help/B/cbot/point.txt
+share/games/colobot/help/B/cbot/pointer.txt
+share/games/colobot/help/B/cbot/pow.txt
+share/games/colobot/help/B/cbot/private.txt
+share/games/colobot/help/B/cbot/produce.txt
+share/games/colobot/help/B/cbot/protected.txt
+share/games/colobot/help/B/cbot/public.txt
+share/games/colobot/help/B/cbot/radar.txt
+share/games/colobot/help/B/cbot/radarall.txt
+share/games/colobot/help/B/cbot/rand.txt
+share/games/colobot/help/B/cbot/readln.txt
+share/games/colobot/help/B/cbot/receive.txt
+share/games/colobot/help/B/cbot/recycle.txt
+share/games/colobot/help/B/cbot/research.txt
+share/games/colobot/help/B/cbot/researched.txt
+share/games/colobot/help/B/cbot/researches.txt
+share/games/colobot/help/B/cbot/retobj.txt
+share/games/colobot/help/B/cbot/return.txt
+share/games/colobot/help/B/cbot/round.txt
+share/games/colobot/help/B/cbot/search.txt
+share/games/colobot/help/B/cbot/send.txt
+share/games/colobot/help/B/cbot/shield.txt
+share/games/colobot/help/B/cbot/sin.txt
+share/games/colobot/help/B/cbot/sizeof.txt
+share/games/colobot/help/B/cbot/sniff.txt
+share/games/colobot/help/B/cbot/space.txt
+share/games/colobot/help/B/cbot/sqrt.txt
+share/games/colobot/help/B/cbot/static.txt
+share/games/colobot/help/B/cbot/strfind.txt
+share/games/colobot/help/B/cbot/string.txt
+share/games/colobot/help/B/cbot/strleft.txt
+share/games/colobot/help/B/cbot/strlen.txt
+share/games/colobot/help/B/cbot/strlower.txt
+share/games/colobot/help/B/cbot/strmid.txt
+share/games/colobot/help/B/cbot/strright.txt
+share/games/colobot/help/B/cbot/strupper.txt
+share/games/colobot/help/B/cbot/strval.txt
+share/games/colobot/help/B/cbot/super.txt
+share/games/colobot/help/B/cbot/switch.txt
+share/games/colobot/help/B/cbot/synchro.txt
+share/games/colobot/help/B/cbot/takeoff.txt
+share/games/colobot/help/B/cbot/tan.txt
+share/games/colobot/help/B/cbot/term.txt
+share/games/colobot/help/B/cbot/testinfo.txt
+share/games/colobot/help/B/cbot/this.txt
+share/games/colobot/help/B/cbot/thump.txt
+share/games/colobot/help/B/cbot/topo.txt
+share/games/colobot/help/B/cbot/true.txt
+share/games/colobot/help/B/cbot/trunc.txt
+share/games/colobot/help/B/cbot/turn.txt
+share/games/colobot/help/B/cbot/type.txt
+share/games/colobot/help/B/cbot/var.txt
+share/games/colobot/help/B/cbot/void.txt
+share/games/colobot/help/B/cbot/wait.txt
+share/games/colobot/help/B/cbot/while.txt
+share/games/colobot/help/B/cbot/writeln.txt
+share/games/colobot/help/B/cheats.txt
+share/games/colobot/help/B/command.txt
+share/games/colobot/help/B/freehelp.txt
+share/games/colobot/help/B/licences.txt
+share/games/colobot/help/B/navig.txt
+share/games/colobot/help/B/object/ant.txt
+share/games/colobot/help/B/object/atomic.txt
+share/games/colobot/help/B/object/barrier.txt
+share/games/colobot/help/B/object/base.txt
+share/games/colobot/help/B/object/bbox.txt
+share/games/colobot/help/B/object/botbc.txt
+share/games/colobot/help/B/object/botbj.txt
+share/games/colobot/help/B/object/botbr.txt
+share/games/colobot/help/B/object/botbs.txt
+share/games/colobot/help/B/object/botdraw.txt
+share/games/colobot/help/B/object/botfc.txt
+share/games/colobot/help/B/object/botfj.txt
+share/games/colobot/help/B/object/botfr.txt
+share/games/colobot/help/B/object/botfs.txt
+share/games/colobot/help/B/object/botgc.txt
+share/games/colobot/help/B/object/botgj.txt
+share/games/colobot/help/B/object/botgr.txt
+share/games/colobot/help/B/object/botgs.txt
+share/games/colobot/help/B/object/botoc.txt
+share/games/colobot/help/B/object/botoj.txt
+share/games/colobot/help/B/object/botor.txt
+share/games/colobot/help/B/object/botos.txt
+share/games/colobot/help/B/object/botphaz.txt
+share/games/colobot/help/B/object/botrecy.txt
+share/games/colobot/help/B/object/botsc.txt
+share/games/colobot/help/B/object/botshld.txt
+share/games/colobot/help/B/object/botsj.txt
+share/games/colobot/help/B/object/botsr.txt
+share/games/colobot/help/B/object/botss.txt
+share/games/colobot/help/B/object/botsub.txt
+share/games/colobot/help/B/object/bottarg.txt
+share/games/colobot/help/B/object/bottr.txt
+share/games/colobot/help/B/object/bottump.txt
+share/games/colobot/help/B/object/bullet.txt
+share/games/colobot/help/B/object/captor.txt
+share/games/colobot/help/B/object/convert.txt
+share/games/colobot/help/B/object/derrick.txt
+share/games/colobot/help/B/object/destroy.txt
+share/games/colobot/help/B/object/egg.txt
+share/games/colobot/help/B/object/energy.txt
+share/games/colobot/help/B/object/enerspot.txt
+share/games/colobot/help/B/object/exchange.txt
+share/games/colobot/help/B/object/factory.txt
+share/games/colobot/help/B/object/flag.txt
+share/games/colobot/help/B/object/goal.txt
+share/games/colobot/help/B/object/human.txt
+share/games/colobot/help/B/object/huston.txt
+share/games/colobot/help/B/object/key.txt
+share/games/colobot/help/B/object/labo.txt
+share/games/colobot/help/B/object/lrv.txt
+share/games/colobot/help/B/object/mine.txt
+share/games/colobot/help/B/object/mother.txt
+share/games/colobot/help/B/object/nest.txt
+share/games/colobot/help/B/object/nuclear.txt
+share/games/colobot/help/B/object/power.txt
+share/games/colobot/help/B/object/radar.txt
+share/games/colobot/help/B/object/repair.txt
+share/games/colobot/help/B/object/research.txt
+share/games/colobot/help/B/object/ruin.txt
+share/games/colobot/help/B/object/safe.txt
+share/games/colobot/help/B/object/spider.txt
+share/games/colobot/help/B/object/start.txt
+share/games/colobot/help/B/object/station.txt
+share/games/colobot/help/B/object/stonspot.txt
+share/games/colobot/help/B/object/target1.txt
+share/games/colobot/help/B/object/target2.txt
+share/games/colobot/help/B/object/titan.txt
+share/games/colobot/help/B/object/titanore.txt
+share/games/colobot/help/B/object/tnt.txt
+share/games/colobot/help/B/object/tower.txt
+share/games/colobot/help/B/object/uranore.txt
+share/games/colobot/help/B/object/uranspot.txt
+share/games/colobot/help/B/object/wasp.txt
+share/games/colobot/help/B/object/waypoint.txt
+share/games/colobot/help/B/object/worm.txt
+share/games/colobot/help/B/object/wreck.txt
+share/games/colobot/help/B/programs/10_FollowPhazer.txt
+share/games/colobot/help/B/programs/1_SwitchCell1.txt
+share/games/colobot/help/B/programs/1_SwitchCell1_link.txt
+share/games/colobot/help/B/programs/2_Recharge1.txt
+share/games/colobot/help/B/programs/2_Recharge1_link.txt
+share/games/colobot/help/B/programs/3_Recharge2.txt
+share/games/colobot/help/B/programs/3_Recharge2_link.txt
+share/games/colobot/help/B/programs/4_CollectTitanium1.txt
+share/games/colobot/help/B/programs/5_CollectTitanium2.txt
+share/games/colobot/help/B/programs/5_CollectTitanium2_link.txt
+share/games/colobot/help/B/programs/6_KillAnt1.txt
+share/games/colobot/help/B/programs/6_KillAnt1_link.txt
+share/games/colobot/help/B/programs/7_CollectTitanium3.txt
+share/games/colobot/help/B/programs/8_ServiceTower1.txt
+share/games/colobot/help/B/programs/8_ServiceTower1_link.txt
+share/games/colobot/help/B/programs/9_terranova.txt
+share/games/colobot/help/B/win.txt
+share/games/colobot/help/C/authors.txt
+share/games/colobot/help/C/battles.txt
+share/games/colobot/help/C/cbot.txt
+share/games/colobot/help/C/cbot/abstime.txt
+share/games/colobot/help/C/cbot/acos.txt
+share/games/colobot/help/C/cbot/aim.txt
+share/games/colobot/help/C/cbot/array.txt
+share/games/colobot/help/C/cbot/asin.txt
+share/games/colobot/help/C/cbot/atan.txt
+share/games/colobot/help/C/cbot/atan2.txt
+share/games/colobot/help/C/cbot/bloc.txt
+share/games/colobot/help/C/cbot/bool.txt
+share/games/colobot/help/C/cbot/break.txt
+share/games/colobot/help/C/cbot/build.txt
+share/games/colobot/help/C/cbot/buildingenabled.txt
+share/games/colobot/help/C/cbot/busy.txt
+share/games/colobot/help/C/cbot/canbuild.txt
+share/games/colobot/help/C/cbot/canresearch.txt
+share/games/colobot/help/C/cbot/category.txt
+share/games/colobot/help/C/cbot/ceil.txt
+share/games/colobot/help/C/cbot/class.txt
+share/games/colobot/help/C/cbot/close.txt
+share/games/colobot/help/C/cbot/colors.txt
+share/games/colobot/help/C/cbot/cond.txt
+share/games/colobot/help/C/cbot/continue.txt
+share/games/colobot/help/C/cbot/cos.txt
+share/games/colobot/help/C/cbot/deletef.txt
+share/games/colobot/help/C/cbot/delinfo.txt
+share/games/colobot/help/C/cbot/destroy.txt
+share/games/colobot/help/C/cbot/detect.txt
+share/games/colobot/help/C/cbot/direct.txt
+share/games/colobot/help/C/cbot/dist.txt
+share/games/colobot/help/C/cbot/dist2d.txt
+share/games/colobot/help/C/cbot/do.txt
+share/games/colobot/help/C/cbot/drop.txt
+share/games/colobot/help/C/cbot/eof.txt
+share/games/colobot/help/C/cbot/errmode.txt
+share/games/colobot/help/C/cbot/expr.txt
+share/games/colobot/help/C/cbot/extends.txt
+share/games/colobot/help/C/cbot/extern.txt
+share/games/colobot/help/C/cbot/factory.txt
+share/games/colobot/help/C/cbot/false.txt
+share/games/colobot/help/C/cbot/file.txt
+share/games/colobot/help/C/cbot/fire.txt
+share/games/colobot/help/C/cbot/flatgrnd.txt
+share/games/colobot/help/C/cbot/flatspace.txt
+share/games/colobot/help/C/cbot/float.txt
+share/games/colobot/help/C/cbot/floor.txt
+share/games/colobot/help/C/cbot/for.txt
+share/games/colobot/help/C/cbot/function.txt
+share/games/colobot/help/C/cbot/goto.txt
+share/games/colobot/help/C/cbot/grab.txt
+share/games/colobot/help/C/cbot/if.txt
+share/games/colobot/help/C/cbot/int.txt
+share/games/colobot/help/C/cbot/jet.txt
+share/games/colobot/help/C/cbot/message.txt
+share/games/colobot/help/C/cbot/motor.txt
+share/games/colobot/help/C/cbot/move.txt
+share/games/colobot/help/C/cbot/nan.txt
+share/games/colobot/help/C/cbot/new.txt
+share/games/colobot/help/C/cbot/null.txt
+share/games/colobot/help/C/cbot/object.txt
+share/games/colobot/help/C/cbot/open.txt
+share/games/colobot/help/C/cbot/openfile.txt
+share/games/colobot/help/C/cbot/pencolor.txt
+share/games/colobot/help/C/cbot/pendown.txt
+share/games/colobot/help/C/cbot/penup.txt
+share/games/colobot/help/C/cbot/penwidth.txt
+share/games/colobot/help/C/cbot/point.txt
+share/games/colobot/help/C/cbot/pointer.txt
+share/games/colobot/help/C/cbot/pow.txt
+share/games/colobot/help/C/cbot/private.txt
+share/games/colobot/help/C/cbot/produce.txt
+share/games/colobot/help/C/cbot/protected.txt
+share/games/colobot/help/C/cbot/public.txt
+share/games/colobot/help/C/cbot/radar.txt
+share/games/colobot/help/C/cbot/radarall.txt
+share/games/colobot/help/C/cbot/rand.txt
+share/games/colobot/help/C/cbot/readln.txt
+share/games/colobot/help/C/cbot/receive.txt
+share/games/colobot/help/C/cbot/recycle.txt
+share/games/colobot/help/C/cbot/research.txt
+share/games/colobot/help/C/cbot/researched.txt
+share/games/colobot/help/C/cbot/researches.txt
+share/games/colobot/help/C/cbot/retobj.txt
+share/games/colobot/help/C/cbot/return.txt
+share/games/colobot/help/C/cbot/round.txt
+share/games/colobot/help/C/cbot/search.txt
+share/games/colobot/help/C/cbot/send.txt
+share/games/colobot/help/C/cbot/shield.txt
+share/games/colobot/help/C/cbot/sin.txt
+share/games/colobot/help/C/cbot/sizeof.txt
+share/games/colobot/help/C/cbot/sniff.txt
+share/games/colobot/help/C/cbot/space.txt
+share/games/colobot/help/C/cbot/sqrt.txt
+share/games/colobot/help/C/cbot/static.txt
+share/games/colobot/help/C/cbot/strfind.txt
+share/games/colobot/help/C/cbot/string.txt
+share/games/colobot/help/C/cbot/strleft.txt
+share/games/colobot/help/C/cbot/strlen.txt
+share/games/colobot/help/C/cbot/strlower.txt
+share/games/colobot/help/C/cbot/strmid.txt
+share/games/colobot/help/C/cbot/strright.txt
+share/games/colobot/help/C/cbot/strupper.txt
+share/games/colobot/help/C/cbot/strval.txt
+share/games/colobot/help/C/cbot/super.txt
+share/games/colobot/help/C/cbot/switch.txt
+share/games/colobot/help/C/cbot/synchro.txt
+share/games/colobot/help/C/cbot/takeoff.txt
+share/games/colobot/help/C/cbot/tan.txt
+share/games/colobot/help/C/cbot/term.txt
+share/games/colobot/help/C/cbot/testinfo.txt
+share/games/colobot/help/C/cbot/this.txt
+share/games/colobot/help/C/cbot/thump.txt
+share/games/colobot/help/C/cbot/topo.txt
+share/games/colobot/help/C/cbot/true.txt
+share/games/colobot/help/C/cbot/trunc.txt
+share/games/colobot/help/C/cbot/turn.txt
+share/games/colobot/help/C/cbot/type.txt
+share/games/colobot/help/C/cbot/var.txt
+share/games/colobot/help/C/cbot/void.txt
+share/games/colobot/help/C/cbot/wait.txt
+share/games/colobot/help/C/cbot/while.txt
+share/games/colobot/help/C/cbot/writeln.txt
+share/games/colobot/help/C/cheats.txt
+share/games/colobot/help/C/command.txt
+share/games/colobot/help/C/freehelp.txt
+share/games/colobot/help/C/licences.txt
+share/games/colobot/help/C/navig.txt
+share/games/colobot/help/C/object/ant.txt
+share/games/colobot/help/C/object/atomic.txt
+share/games/colobot/help/C/object/barrier.txt
+share/games/colobot/help/C/object/base.txt
+share/games/colobot/help/C/object/bbox.txt
+share/games/colobot/help/C/object/botbc.txt
+share/games/colobot/help/C/object/botbj.txt
+share/games/colobot/help/C/object/botbr.txt
+share/games/colobot/help/C/object/botbs.txt
+share/games/colobot/help/C/object/botdraw.txt
+share/games/colobot/help/C/object/botfc.txt
+share/games/colobot/help/C/object/botfj.txt
+share/games/colobot/help/C/object/botfr.txt
+share/games/colobot/help/C/object/botfs.txt
+share/games/colobot/help/C/object/botgc.txt
+share/games/colobot/help/C/object/botgj.txt
+share/games/colobot/help/C/object/botgr.txt
+share/games/colobot/help/C/object/botgs.txt
+share/games/colobot/help/C/object/botoc.txt
+share/games/colobot/help/C/object/botoj.txt
+share/games/colobot/help/C/object/botor.txt
+share/games/colobot/help/C/object/botos.txt
+share/games/colobot/help/C/object/botphaz.txt
+share/games/colobot/help/C/object/botrecy.txt
+share/games/colobot/help/C/object/botsc.txt
+share/games/colobot/help/C/object/botshld.txt
+share/games/colobot/help/C/object/botsj.txt
+share/games/colobot/help/C/object/botsr.txt
+share/games/colobot/help/C/object/botss.txt
+share/games/colobot/help/C/object/botsub.txt
+share/games/colobot/help/C/object/bottarg.txt
+share/games/colobot/help/C/object/bottr.txt
+share/games/colobot/help/C/object/bottump.txt
+share/games/colobot/help/C/object/bullet.txt
+share/games/colobot/help/C/object/captor.txt
+share/games/colobot/help/C/object/convert.txt
+share/games/colobot/help/C/object/derrick.txt
+share/games/colobot/help/C/object/destroy.txt
+share/games/colobot/help/C/object/egg.txt
+share/games/colobot/help/C/object/energy.txt
+share/games/colobot/help/C/object/enerspot.txt
+share/games/colobot/help/C/object/exchange.txt
+share/games/colobot/help/C/object/factory.txt
+share/games/colobot/help/C/object/flag.txt
+share/games/colobot/help/C/object/goal.txt
+share/games/colobot/help/C/object/human.txt
+share/games/colobot/help/C/object/huston.txt
+share/games/colobot/help/C/object/key.txt
+share/games/colobot/help/C/object/labo.txt
+share/games/colobot/help/C/object/lrv.txt
+share/games/colobot/help/C/object/mine.txt
+share/games/colobot/help/C/object/mother.txt
+share/games/colobot/help/C/object/nest.txt
+share/games/colobot/help/C/object/nuclear.txt
+share/games/colobot/help/C/object/power.txt
+share/games/colobot/help/C/object/radar.txt
+share/games/colobot/help/C/object/repair.txt
+share/games/colobot/help/C/object/research.txt
+share/games/colobot/help/C/object/ruin.txt
+share/games/colobot/help/C/object/safe.txt
+share/games/colobot/help/C/object/spider.txt
+share/games/colobot/help/C/object/start.txt
+share/games/colobot/help/C/object/station.txt
+share/games/colobot/help/C/object/stonspot.txt
+share/games/colobot/help/C/object/target1.txt
+share/games/colobot/help/C/object/target2.txt
+share/games/colobot/help/C/object/titan.txt
+share/games/colobot/help/C/object/titanore.txt
+share/games/colobot/help/C/object/tnt.txt
+share/games/colobot/help/C/object/tower.txt
+share/games/colobot/help/C/object/uranore.txt
+share/games/colobot/help/C/object/uranspot.txt
+share/games/colobot/help/C/object/wasp.txt
+share/games/colobot/help/C/object/waypoint.txt
+share/games/colobot/help/C/object/worm.txt
+share/games/colobot/help/C/object/wreck.txt
+share/games/colobot/help/C/programs/10_FollowPhazer.txt
+share/games/colobot/help/C/programs/1_SwitchCell1.txt
+share/games/colobot/help/C/programs/1_SwitchCell1_link.txt
+share/games/colobot/help/C/programs/2_Recharge1.txt
+share/games/colobot/help/C/programs/2_Recharge1_link.txt
+share/games/colobot/help/C/programs/3_Recharge2.txt
+share/games/colobot/help/C/programs/3_Recharge2_link.txt
+share/games/colobot/help/C/programs/4_CollectTitanium1.txt
+share/games/colobot/help/C/programs/5_CollectTitanium2.txt
+share/games/colobot/help/C/programs/5_CollectTitanium2_link.txt
+share/games/colobot/help/C/programs/6_KillAnt1.txt
+share/games/colobot/help/C/programs/6_KillAnt1_link.txt
+share/games/colobot/help/C/programs/7_CollectTitanium3.txt
+share/games/colobot/help/C/programs/8_ServiceTower1.txt
+share/games/colobot/help/C/programs/8_ServiceTower1_link.txt
+share/games/colobot/help/C/programs/9_terranova.txt
+share/games/colobot/help/C/win.txt
+share/games/colobot/help/D/authors.txt
+share/games/colobot/help/D/battles.txt
+share/games/colobot/help/D/cbot.txt
+share/games/colobot/help/D/cbot/abstime.txt
+share/games/colobot/help/D/cbot/acos.txt
+share/games/colobot/help/D/cbot/aim.txt
+share/games/colobot/help/D/cbot/array.txt
+share/games/colobot/help/D/cbot/asin.txt
+share/games/colobot/help/D/cbot/atan.txt
+share/games/colobot/help/D/cbot/atan2.txt
+share/games/colobot/help/D/cbot/bloc.txt
+share/games/colobot/help/D/cbot/bool.txt
+share/games/colobot/help/D/cbot/break.txt
+share/games/colobot/help/D/cbot/build.txt
+share/games/colobot/help/D/cbot/buildingenabled.txt
+share/games/colobot/help/D/cbot/busy.txt
+share/games/colobot/help/D/cbot/canbuild.txt
+share/games/colobot/help/D/cbot/canresearch.txt
+share/games/colobot/help/D/cbot/category.txt
+share/games/colobot/help/D/cbot/ceil.txt
+share/games/colobot/help/D/cbot/class.txt
+share/games/colobot/help/D/cbot/close.txt
+share/games/colobot/help/D/cbot/colors.txt
+share/games/colobot/help/D/cbot/cond.txt
+share/games/colobot/help/D/cbot/continue.txt
+share/games/colobot/help/D/cbot/cos.txt
+share/games/colobot/help/D/cbot/deletef.txt
+share/games/colobot/help/D/cbot/delinfo.txt
+share/games/colobot/help/D/cbot/destroy.txt
+share/games/colobot/help/D/cbot/detect.txt
+share/games/colobot/help/D/cbot/direct.txt
+share/games/colobot/help/D/cbot/dist.txt
+share/games/colobot/help/D/cbot/dist2d.txt
+share/games/colobot/help/D/cbot/do.txt
+share/games/colobot/help/D/cbot/drop.txt
+share/games/colobot/help/D/cbot/eof.txt
+share/games/colobot/help/D/cbot/errmode.txt
+share/games/colobot/help/D/cbot/expr.txt
+share/games/colobot/help/D/cbot/extends.txt
+share/games/colobot/help/D/cbot/extern.txt
+share/games/colobot/help/D/cbot/factory.txt
+share/games/colobot/help/D/cbot/false.txt
+share/games/colobot/help/D/cbot/file.txt
+share/games/colobot/help/D/cbot/fire.txt
+share/games/colobot/help/D/cbot/flatgrnd.txt
+share/games/colobot/help/D/cbot/flatspace.txt
+share/games/colobot/help/D/cbot/float.txt
+share/games/colobot/help/D/cbot/floor.txt
+share/games/colobot/help/D/cbot/for.txt
+share/games/colobot/help/D/cbot/function.txt
+share/games/colobot/help/D/cbot/goto.txt
+share/games/colobot/help/D/cbot/grab.txt
+share/games/colobot/help/D/cbot/if.txt
+share/games/colobot/help/D/cbot/int.txt
+share/games/colobot/help/D/cbot/jet.txt
+share/games/colobot/help/D/cbot/message.txt
+share/games/colobot/help/D/cbot/motor.txt
+share/games/colobot/help/D/cbot/move.txt
+share/games/colobot/help/D/cbot/nan.txt
+share/games/colobot/help/D/cbot/new.txt
+share/games/colobot/help/D/cbot/null.txt
+share/games/colobot/help/D/cbot/object.txt
+share/games/colobot/help/D/cbot/open.txt
+share/games/colobot/help/D/cbot/openfile.txt
+share/games/colobot/help/D/cbot/pencolor.txt
+share/games/colobot/help/D/cbot/pendown.txt
+share/games/colobot/help/D/cbot/penup.txt
+share/games/colobot/help/D/cbot/penwidth.txt
+share/games/colobot/help/D/cbot/point.txt
+share/games/colobot/help/D/cbot/pointer.txt
+share/games/colobot/help/D/cbot/pow.txt
+share/games/colobot/help/D/cbot/private.txt
+share/games/colobot/help/D/cbot/produce.txt
+share/games/colobot/help/D/cbot/protected.txt
+share/games/colobot/help/D/cbot/public.txt
+share/games/colobot/help/D/cbot/radar.txt
+share/games/colobot/help/D/cbot/radarall.txt
+share/games/colobot/help/D/cbot/rand.txt
+share/games/colobot/help/D/cbot/readln.txt
+share/games/colobot/help/D/cbot/receive.txt
+share/games/colobot/help/D/cbot/recycle.txt
+share/games/colobot/help/D/cbot/research.txt
+share/games/colobot/help/D/cbot/researched.txt
+share/games/colobot/help/D/cbot/researches.txt
+share/games/colobot/help/D/cbot/retobj.txt
+share/games/colobot/help/D/cbot/return.txt
+share/games/colobot/help/D/cbot/round.txt
+share/games/colobot/help/D/cbot/search.txt
+share/games/colobot/help/D/cbot/send.txt
+share/games/colobot/help/D/cbot/shield.txt
+share/games/colobot/help/D/cbot/sin.txt
+share/games/colobot/help/D/cbot/sizeof.txt
+share/games/colobot/help/D/cbot/sniff.txt
+share/games/colobot/help/D/cbot/space.txt
+share/games/colobot/help/D/cbot/sqrt.txt
+share/games/colobot/help/D/cbot/static.txt
+share/games/colobot/help/D/cbot/strfind.txt
+share/games/colobot/help/D/cbot/string.txt
+share/games/colobot/help/D/cbot/strleft.txt
+share/games/colobot/help/D/cbot/strlen.txt
+share/games/colobot/help/D/cbot/strlower.txt
+share/games/colobot/help/D/cbot/strmid.txt
+share/games/colobot/help/D/cbot/strright.txt
+share/games/colobot/help/D/cbot/strupper.txt
+share/games/colobot/help/D/cbot/strval.txt
+share/games/colobot/help/D/cbot/super.txt
+share/games/colobot/help/D/cbot/switch.txt
+share/games/colobot/help/D/cbot/synchro.txt
+share/games/colobot/help/D/cbot/takeoff.txt
+share/games/colobot/help/D/cbot/tan.txt
+share/games/colobot/help/D/cbot/term.txt
+share/games/colobot/help/D/cbot/testinfo.txt
+share/games/colobot/help/D/cbot/this.txt
+share/games/colobot/help/D/cbot/thump.txt
+share/games/colobot/help/D/cbot/topo.txt
+share/games/colobot/help/D/cbot/true.txt
+share/games/colobot/help/D/cbot/trunc.txt
+share/games/colobot/help/D/cbot/turn.txt
+share/games/colobot/help/D/cbot/type.txt
+share/games/colobot/help/D/cbot/var.txt
+share/games/colobot/help/D/cbot/void.txt
+share/games/colobot/help/D/cbot/wait.txt
+share/games/colobot/help/D/cbot/while.txt
+share/games/colobot/help/D/cbot/writeln.txt
+share/games/colobot/help/D/cheats.txt
+share/games/colobot/help/D/command.txt
+share/games/colobot/help/D/freehelp.txt
+share/games/colobot/help/D/licences.txt
+share/games/colobot/help/D/navig.txt
+share/games/colobot/help/D/object/ant.txt
+share/games/colobot/help/D/object/atomic.txt
+share/games/colobot/help/D/object/barrier.txt
+share/games/colobot/help/D/object/base.txt
+share/games/colobot/help/D/object/bbox.txt
+share/games/colobot/help/D/object/botbc.txt
+share/games/colobot/help/D/object/botbj.txt
+share/games/colobot/help/D/object/botbr.txt
+share/games/colobot/help/D/object/botbs.txt
+share/games/colobot/help/D/object/botdraw.txt
+share/games/colobot/help/D/object/botfc.txt
+share/games/colobot/help/D/object/botfj.txt
+share/games/colobot/help/D/object/botfr.txt
+share/games/colobot/help/D/object/botfs.txt
+share/games/colobot/help/D/object/botgc.txt
+share/games/colobot/help/D/object/botgj.txt
+share/games/colobot/help/D/object/botgr.txt
+share/games/colobot/help/D/object/botgs.txt
+share/games/colobot/help/D/object/botoc.txt
+share/games/colobot/help/D/object/botoj.txt
+share/games/colobot/help/D/object/botor.txt
+share/games/colobot/help/D/object/botos.txt
+share/games/colobot/help/D/object/botphaz.txt
+share/games/colobot/help/D/object/botrecy.txt
+share/games/colobot/help/D/object/botsc.txt
+share/games/colobot/help/D/object/botshld.txt
+share/games/colobot/help/D/object/botsj.txt
+share/games/colobot/help/D/object/botsr.txt
+share/games/colobot/help/D/object/botss.txt
+share/games/colobot/help/D/object/botsub.txt
+share/games/colobot/help/D/object/bottarg.txt
+share/games/colobot/help/D/object/bottr.txt
+share/games/colobot/help/D/object/bottump.txt
+share/games/colobot/help/D/object/bullet.txt
+share/games/colobot/help/D/object/captor.txt
+share/games/colobot/help/D/object/convert.txt
+share/games/colobot/help/D/object/derrick.txt
+share/games/colobot/help/D/object/destroy.txt
+share/games/colobot/help/D/object/egg.txt
+share/games/colobot/help/D/object/energy.txt
+share/games/colobot/help/D/object/enerspot.txt
+share/games/colobot/help/D/object/exchange.txt
+share/games/colobot/help/D/object/factory.txt
+share/games/colobot/help/D/object/flag.txt
+share/games/colobot/help/D/object/goal.txt
+share/games/colobot/help/D/object/human.txt
+share/games/colobot/help/D/object/huston.txt
+share/games/colobot/help/D/object/key.txt
+share/games/colobot/help/D/object/labo.txt
+share/games/colobot/help/D/object/lrv.txt
+share/games/colobot/help/D/object/mine.txt
+share/games/colobot/help/D/object/mother.txt
+share/games/colobot/help/D/object/nest.txt
+share/games/colobot/help/D/object/nuclear.txt
+share/games/colobot/help/D/object/power.txt
+share/games/colobot/help/D/object/radar.txt
+share/games/colobot/help/D/object/repair.txt
+share/games/colobot/help/D/object/research.txt
+share/games/colobot/help/D/object/ruin.txt
+share/games/colobot/help/D/object/safe.txt
+share/games/colobot/help/D/object/spider.txt
+share/games/colobot/help/D/object/start.txt
+share/games/colobot/help/D/object/station.txt
+share/games/colobot/help/D/object/stonspot.txt
+share/games/colobot/help/D/object/target1.txt
+share/games/colobot/help/D/object/target2.txt
+share/games/colobot/help/D/object/titan.txt
+share/games/colobot/help/D/object/titanore.txt
+share/games/colobot/help/D/object/tnt.txt
+share/games/colobot/help/D/object/tower.txt
+share/games/colobot/help/D/object/uranore.txt
+share/games/colobot/help/D/object/uranspot.txt
+share/games/colobot/help/D/object/wasp.txt
+share/games/colobot/help/D/object/waypoint.txt
+share/games/colobot/help/D/object/worm.txt
+share/games/colobot/help/D/object/wreck.txt
+share/games/colobot/help/D/programs/10_FollowPhazer.txt
+share/games/colobot/help/D/programs/1_SwitchCell1.txt
+share/games/colobot/help/D/programs/1_SwitchCell1_link.txt
+share/games/colobot/help/D/programs/2_Recharge1.txt
+share/games/colobot/help/D/programs/2_Recharge1_link.txt
+share/games/colobot/help/D/programs/3_Recharge2.txt
+share/games/colobot/help/D/programs/3_Recharge2_link.txt
+share/games/colobot/help/D/programs/4_CollectTitanium1.txt
+share/games/colobot/help/D/programs/5_CollectTitanium2.txt
+share/games/colobot/help/D/programs/5_CollectTitanium2_link.txt
+share/games/colobot/help/D/programs/6_KillAnt1.txt
+share/games/colobot/help/D/programs/6_KillAnt1_link.txt
+share/games/colobot/help/D/programs/7_CollectTitanium3.txt
+share/games/colobot/help/D/programs/8_ServiceTower1.txt
+share/games/colobot/help/D/programs/8_ServiceTower1_link.txt
+share/games/colobot/help/D/programs/9_terranova.txt
+share/games/colobot/help/D/win.txt
+share/games/colobot/help/E/authors.txt
+share/games/colobot/help/E/battles.txt
+share/games/colobot/help/E/cbot.txt
+share/games/colobot/help/E/cbot/abstime.txt
+share/games/colobot/help/E/cbot/acos.txt
+share/games/colobot/help/E/cbot/aim.txt
+share/games/colobot/help/E/cbot/array.txt
+share/games/colobot/help/E/cbot/asin.txt
+share/games/colobot/help/E/cbot/atan.txt
+share/games/colobot/help/E/cbot/atan2.txt
+share/games/colobot/help/E/cbot/bloc.txt
+share/games/colobot/help/E/cbot/bool.txt
+share/games/colobot/help/E/cbot/break.txt
+share/games/colobot/help/E/cbot/build.txt
+share/games/colobot/help/E/cbot/buildingenabled.txt
+share/games/colobot/help/E/cbot/busy.txt
+share/games/colobot/help/E/cbot/canbuild.txt
+share/games/colobot/help/E/cbot/canresearch.txt
+share/games/colobot/help/E/cbot/category.txt
+share/games/colobot/help/E/cbot/ceil.txt
+share/games/colobot/help/E/cbot/class.txt
+share/games/colobot/help/E/cbot/close.txt
+share/games/colobot/help/E/cbot/colors.txt
+share/games/colobot/help/E/cbot/cond.txt
+share/games/colobot/help/E/cbot/continue.txt
+share/games/colobot/help/E/cbot/cos.txt
+share/games/colobot/help/E/cbot/deletef.txt
+share/games/colobot/help/E/cbot/delinfo.txt
+share/games/colobot/help/E/cbot/destroy.txt
+share/games/colobot/help/E/cbot/detect.txt
+share/games/colobot/help/E/cbot/direct.txt
+share/games/colobot/help/E/cbot/dist.txt
+share/games/colobot/help/E/cbot/dist2d.txt
+share/games/colobot/help/E/cbot/do.txt
+share/games/colobot/help/E/cbot/drop.txt
+share/games/colobot/help/E/cbot/eof.txt
+share/games/colobot/help/E/cbot/errmode.txt
+share/games/colobot/help/E/cbot/expr.txt
+share/games/colobot/help/E/cbot/extends.txt
+share/games/colobot/help/E/cbot/extern.txt
+share/games/colobot/help/E/cbot/factory.txt
+share/games/colobot/help/E/cbot/false.txt
+share/games/colobot/help/E/cbot/file.txt
+share/games/colobot/help/E/cbot/fire.txt
+share/games/colobot/help/E/cbot/flatgrnd.txt
+share/games/colobot/help/E/cbot/flatspace.txt
+share/games/colobot/help/E/cbot/float.txt
+share/games/colobot/help/E/cbot/floor.txt
+share/games/colobot/help/E/cbot/for.txt
+share/games/colobot/help/E/cbot/function.txt
+share/games/colobot/help/E/cbot/goto.txt
+share/games/colobot/help/E/cbot/grab.txt
+share/games/colobot/help/E/cbot/if.txt
+share/games/colobot/help/E/cbot/int.txt
+share/games/colobot/help/E/cbot/jet.txt
+share/games/colobot/help/E/cbot/message.txt
+share/games/colobot/help/E/cbot/motor.txt
+share/games/colobot/help/E/cbot/move.txt
+share/games/colobot/help/E/cbot/nan.txt
+share/games/colobot/help/E/cbot/new.txt
+share/games/colobot/help/E/cbot/null.txt
+share/games/colobot/help/E/cbot/object.txt
+share/games/colobot/help/E/cbot/open.txt
+share/games/colobot/help/E/cbot/openfile.txt
+share/games/colobot/help/E/cbot/pencolor.txt
+share/games/colobot/help/E/cbot/pendown.txt
+share/games/colobot/help/E/cbot/penup.txt
+share/games/colobot/help/E/cbot/penwidth.txt
+share/games/colobot/help/E/cbot/point.txt
+share/games/colobot/help/E/cbot/pointer.txt
+share/games/colobot/help/E/cbot/pow.txt
+share/games/colobot/help/E/cbot/private.txt
+share/games/colobot/help/E/cbot/produce.txt
+share/games/colobot/help/E/cbot/protected.txt
+share/games/colobot/help/E/cbot/public.txt
+share/games/colobot/help/E/cbot/radar.txt
+share/games/colobot/help/E/cbot/radarall.txt
+share/games/colobot/help/E/cbot/rand.txt
+share/games/colobot/help/E/cbot/readln.txt
+share/games/colobot/help/E/cbot/receive.txt
+share/games/colobot/help/E/cbot/recycle.txt
+share/games/colobot/help/E/cbot/research.txt
+share/games/colobot/help/E/cbot/researched.txt
+share/games/colobot/help/E/cbot/researches.txt
+share/games/colobot/help/E/cbot/retobj.txt
+share/games/colobot/help/E/cbot/return.txt
+share/games/colobot/help/E/cbot/round.txt
+share/games/colobot/help/E/cbot/search.txt
+share/games/colobot/help/E/cbot/send.txt
+share/games/colobot/help/E/cbot/shield.txt
+share/games/colobot/help/E/cbot/sin.txt
+share/games/colobot/help/E/cbot/sizeof.txt
+share/games/colobot/help/E/cbot/sniff.txt
+share/games/colobot/help/E/cbot/space.txt
+share/games/colobot/help/E/cbot/sqrt.txt
+share/games/colobot/help/E/cbot/static.txt
+share/games/colobot/help/E/cbot/strfind.txt
+share/games/colobot/help/E/cbot/string.txt
+share/games/colobot/help/E/cbot/strleft.txt
+share/games/colobot/help/E/cbot/strlen.txt
+share/games/colobot/help/E/cbot/strlower.txt
+share/games/colobot/help/E/cbot/strmid.txt
+share/games/colobot/help/E/cbot/strright.txt
+share/games/colobot/help/E/cbot/strupper.txt
+share/games/colobot/help/E/cbot/strval.txt
+share/games/colobot/help/E/cbot/super.txt
+share/games/colobot/help/E/cbot/switch.txt
+share/games/colobot/help/E/cbot/synchro.txt
+share/games/colobot/help/E/cbot/takeoff.txt
+share/games/colobot/help/E/cbot/tan.txt
+share/games/colobot/help/E/cbot/term.txt
+share/games/colobot/help/E/cbot/testinfo.txt
+share/games/colobot/help/E/cbot/this.txt
+share/games/colobot/help/E/cbot/thump.txt
+share/games/colobot/help/E/cbot/topo.txt
+share/games/colobot/help/E/cbot/true.txt
+share/games/colobot/help/E/cbot/trunc.txt
+share/games/colobot/help/E/cbot/turn.txt
+share/games/colobot/help/E/cbot/type.txt
+share/games/colobot/help/E/cbot/var.txt
+share/games/colobot/help/E/cbot/void.txt
+share/games/colobot/help/E/cbot/wait.txt
+share/games/colobot/help/E/cbot/while.txt
+share/games/colobot/help/E/cbot/writeln.txt
+share/games/colobot/help/E/cheats.txt
+share/games/colobot/help/E/command.txt
+share/games/colobot/help/E/freehelp.txt
+share/games/colobot/help/E/licences.txt
+share/games/colobot/help/E/navig.txt
+share/games/colobot/help/E/object/ant.txt
+share/games/colobot/help/E/object/atomic.txt
+share/games/colobot/help/E/object/barrier.txt
+share/games/colobot/help/E/object/base.txt
+share/games/colobot/help/E/object/bbox.txt
+share/games/colobot/help/E/object/botbc.txt
+share/games/colobot/help/E/object/botbj.txt
+share/games/colobot/help/E/object/botbr.txt
+share/games/colobot/help/E/object/botbs.txt
+share/games/colobot/help/E/object/botdraw.txt
+share/games/colobot/help/E/object/botfc.txt
+share/games/colobot/help/E/object/botfj.txt
+share/games/colobot/help/E/object/botfr.txt
+share/games/colobot/help/E/object/botfs.txt
+share/games/colobot/help/E/object/botgc.txt
+share/games/colobot/help/E/object/botgj.txt
+share/games/colobot/help/E/object/botgr.txt
+share/games/colobot/help/E/object/botgs.txt
+share/games/colobot/help/E/object/botoc.txt
+share/games/colobot/help/E/object/botoj.txt
+share/games/colobot/help/E/object/botor.txt
+share/games/colobot/help/E/object/botos.txt
+share/games/colobot/help/E/object/botphaz.txt
+share/games/colobot/help/E/object/botrecy.txt
+share/games/colobot/help/E/object/botsc.txt
+share/games/colobot/help/E/object/botshld.txt
+share/games/colobot/help/E/object/botsj.txt
+share/games/colobot/help/E/object/botsr.txt
+share/games/colobot/help/E/object/botss.txt
+share/games/colobot/help/E/object/botsub.txt
+share/games/colobot/help/E/object/bottarg.txt
+share/games/colobot/help/E/object/bottr.txt
+share/games/colobot/help/E/object/bottump.txt
+share/games/colobot/help/E/object/bullet.txt
+share/games/colobot/help/E/object/captor.txt
+share/games/colobot/help/E/object/convert.txt
+share/games/colobot/help/E/object/derrick.txt
+share/games/colobot/help/E/object/destroy.txt
+share/games/colobot/help/E/object/egg.txt
+share/games/colobot/help/E/object/energy.txt
+share/games/colobot/help/E/object/enerspot.txt
+share/games/colobot/help/E/object/exchange.txt
+share/games/colobot/help/E/object/factory.txt
+share/games/colobot/help/E/object/flag.txt
+share/games/colobot/help/E/object/goal.txt
+share/games/colobot/help/E/object/human.txt
+share/games/colobot/help/E/object/huston.txt
+share/games/colobot/help/E/object/key.txt
+share/games/colobot/help/E/object/labo.txt
+share/games/colobot/help/E/object/lrv.txt
+share/games/colobot/help/E/object/mine.txt
+share/games/colobot/help/E/object/mother.txt
+share/games/colobot/help/E/object/nest.txt
+share/games/colobot/help/E/object/nuclear.txt
+share/games/colobot/help/E/object/power.txt
+share/games/colobot/help/E/object/radar.txt
+share/games/colobot/help/E/object/repair.txt
+share/games/colobot/help/E/object/research.txt
+share/games/colobot/help/E/object/ruin.txt
+share/games/colobot/help/E/object/safe.txt
+share/games/colobot/help/E/object/spider.txt
+share/games/colobot/help/E/object/start.txt
+share/games/colobot/help/E/object/station.txt
+share/games/colobot/help/E/object/stonspot.txt
+share/games/colobot/help/E/object/target1.txt
+share/games/colobot/help/E/object/target2.txt
+share/games/colobot/help/E/object/titan.txt
+share/games/colobot/help/E/object/titanore.txt
+share/games/colobot/help/E/object/tnt.txt
+share/games/colobot/help/E/object/tower.txt
+share/games/colobot/help/E/object/uranore.txt
+share/games/colobot/help/E/object/uranspot.txt
+share/games/colobot/help/E/object/wasp.txt
+share/games/colobot/help/E/object/waypoint.txt
+share/games/colobot/help/E/object/worm.txt
+share/games/colobot/help/E/object/wreck.txt
+share/games/colobot/help/E/programs/10_FollowPhazer.txt
+share/games/colobot/help/E/programs/1_SwitchCell1.txt
+share/games/colobot/help/E/programs/1_SwitchCell1_link.txt
+share/games/colobot/help/E/programs/2_Recharge1.txt
+share/games/colobot/help/E/programs/2_Recharge1_link.txt
+share/games/colobot/help/E/programs/3_Recharge2.txt
+share/games/colobot/help/E/programs/3_Recharge2_link.txt
+share/games/colobot/help/E/programs/4_CollectTitanium1.txt
+share/games/colobot/help/E/programs/5_CollectTitanium2.txt
+share/games/colobot/help/E/programs/5_CollectTitanium2_link.txt
+share/games/colobot/help/E/programs/6_KillAnt1.txt
+share/games/colobot/help/E/programs/6_KillAnt1_link.txt
+share/games/colobot/help/E/programs/7_CollectTitanium3.txt
+share/games/colobot/help/E/programs/8_ServiceTower1.txt
+share/games/colobot/help/E/programs/8_ServiceTower1_link.txt
+share/games/colobot/help/E/programs/9_terranova.txt
+share/games/colobot/help/E/win.txt
+share/games/colobot/help/F/authors.txt
+share/games/colobot/help/F/battles.txt
+share/games/colobot/help/F/cbot.txt
+share/games/colobot/help/F/cbot/abstime.txt
+share/games/colobot/help/F/cbot/acos.txt
+share/games/colobot/help/F/cbot/aim.txt
+share/games/colobot/help/F/cbot/array.txt
+share/games/colobot/help/F/cbot/asin.txt
+share/games/colobot/help/F/cbot/atan.txt
+share/games/colobot/help/F/cbot/atan2.txt
+share/games/colobot/help/F/cbot/bloc.txt
+share/games/colobot/help/F/cbot/bool.txt
+share/games/colobot/help/F/cbot/break.txt
+share/games/colobot/help/F/cbot/build.txt
+share/games/colobot/help/F/cbot/buildingenabled.txt
+share/games/colobot/help/F/cbot/busy.txt
+share/games/colobot/help/F/cbot/canbuild.txt
+share/games/colobot/help/F/cbot/canresearch.txt
+share/games/colobot/help/F/cbot/category.txt
+share/games/colobot/help/F/cbot/ceil.txt
+share/games/colobot/help/F/cbot/class.txt
+share/games/colobot/help/F/cbot/close.txt
+share/games/colobot/help/F/cbot/colors.txt
+share/games/colobot/help/F/cbot/cond.txt
+share/games/colobot/help/F/cbot/continue.txt
+share/games/colobot/help/F/cbot/cos.txt
+share/games/colobot/help/F/cbot/deletef.txt
+share/games/colobot/help/F/cbot/delinfo.txt
+share/games/colobot/help/F/cbot/destroy.txt
+share/games/colobot/help/F/cbot/detect.txt
+share/games/colobot/help/F/cbot/direct.txt
+share/games/colobot/help/F/cbot/dist.txt
+share/games/colobot/help/F/cbot/dist2d.txt
+share/games/colobot/help/F/cbot/do.txt
+share/games/colobot/help/F/cbot/drop.txt
+share/games/colobot/help/F/cbot/eof.txt
+share/games/colobot/help/F/cbot/errmode.txt
+share/games/colobot/help/F/cbot/expr.txt
+share/games/colobot/help/F/cbot/extends.txt
+share/games/colobot/help/F/cbot/extern.txt
+share/games/colobot/help/F/cbot/factory.txt
+share/games/colobot/help/F/cbot/false.txt
+share/games/colobot/help/F/cbot/file.txt
+share/games/colobot/help/F/cbot/fire.txt
+share/games/colobot/help/F/cbot/flatgrnd.txt
+share/games/colobot/help/F/cbot/flatspace.txt
+share/games/colobot/help/F/cbot/float.txt
+share/games/colobot/help/F/cbot/floor.txt
+share/games/colobot/help/F/cbot/for.txt
+share/games/colobot/help/F/cbot/function.txt
+share/games/colobot/help/F/cbot/goto.txt
+share/games/colobot/help/F/cbot/grab.txt
+share/games/colobot/help/F/cbot/if.txt
+share/games/colobot/help/F/cbot/int.txt
+share/games/colobot/help/F/cbot/jet.txt
+share/games/colobot/help/F/cbot/message.txt
+share/games/colobot/help/F/cbot/motor.txt
+share/games/colobot/help/F/cbot/move.txt
+share/games/colobot/help/F/cbot/nan.txt
+share/games/colobot/help/F/cbot/new.txt
+share/games/colobot/help/F/cbot/null.txt
+share/games/colobot/help/F/cbot/object.txt
+share/games/colobot/help/F/cbot/open.txt
+share/games/colobot/help/F/cbot/openfile.txt
+share/games/colobot/help/F/cbot/pencolor.txt
+share/games/colobot/help/F/cbot/pendown.txt
+share/games/colobot/help/F/cbot/penup.txt
+share/games/colobot/help/F/cbot/penwidth.txt
+share/games/colobot/help/F/cbot/point.txt
+share/games/colobot/help/F/cbot/pointer.txt
+share/games/colobot/help/F/cbot/pow.txt
+share/games/colobot/help/F/cbot/private.txt
+share/games/colobot/help/F/cbot/produce.txt
+share/games/colobot/help/F/cbot/protected.txt
+share/games/colobot/help/F/cbot/public.txt
+share/games/colobot/help/F/cbot/radar.txt
+share/games/colobot/help/F/cbot/radarall.txt
+share/games/colobot/help/F/cbot/rand.txt
+share/games/colobot/help/F/cbot/readln.txt
+share/games/colobot/help/F/cbot/receive.txt
+share/games/colobot/help/F/cbot/recycle.txt
+share/games/colobot/help/F/cbot/research.txt
+share/games/colobot/help/F/cbot/researched.txt
+share/games/colobot/help/F/cbot/researches.txt
+share/games/colobot/help/F/cbot/retobj.txt
+share/games/colobot/help/F/cbot/return.txt
+share/games/colobot/help/F/cbot/round.txt
+share/games/colobot/help/F/cbot/search.txt
+share/games/colobot/help/F/cbot/send.txt
+share/games/colobot/help/F/cbot/shield.txt
+share/games/colobot/help/F/cbot/sin.txt
+share/games/colobot/help/F/cbot/sizeof.txt
+share/games/colobot/help/F/cbot/sniff.txt
+share/games/colobot/help/F/cbot/space.txt
+share/games/colobot/help/F/cbot/sqrt.txt
+share/games/colobot/help/F/cbot/static.txt
+share/games/colobot/help/F/cbot/strfind.txt
+share/games/colobot/help/F/cbot/string.txt
+share/games/colobot/help/F/cbot/strleft.txt
+share/games/colobot/help/F/cbot/strlen.txt
+share/games/colobot/help/F/cbot/strlower.txt
+share/games/colobot/help/F/cbot/strmid.txt
+share/games/colobot/help/F/cbot/strright.txt
+share/games/colobot/help/F/cbot/strupper.txt
+share/games/colobot/help/F/cbot/strval.txt
+share/games/colobot/help/F/cbot/super.txt
+share/games/colobot/help/F/cbot/switch.txt
+share/games/colobot/help/F/cbot/synchro.txt
+share/games/colobot/help/F/cbot/takeoff.txt
+share/games/colobot/help/F/cbot/tan.txt
+share/games/colobot/help/F/cbot/term.txt
+share/games/colobot/help/F/cbot/testinfo.txt
+share/games/colobot/help/F/cbot/this.txt
+share/games/colobot/help/F/cbot/thump.txt
+share/games/colobot/help/F/cbot/topo.txt
+share/games/colobot/help/F/cbot/true.txt
+share/games/colobot/help/F/cbot/trunc.txt
+share/games/colobot/help/F/cbot/turn.txt
+share/games/colobot/help/F/cbot/type.txt
+share/games/colobot/help/F/cbot/var.txt
+share/games/colobot/help/F/cbot/void.txt
+share/games/colobot/help/F/cbot/wait.txt
+share/games/colobot/help/F/cbot/while.txt
+share/games/colobot/help/F/cbot/writeln.txt
+share/games/colobot/help/F/cheats.txt
+share/games/colobot/help/F/command.txt
+share/games/colobot/help/F/freehelp.txt
+share/games/colobot/help/F/licences.txt
+share/games/colobot/help/F/navig.txt
+share/games/colobot/help/F/object/ant.txt
+share/games/colobot/help/F/object/atomic.txt
+share/games/colobot/help/F/object/barrier.txt
+share/games/colobot/help/F/object/base.txt
+share/games/colobot/help/F/object/bbox.txt
+share/games/colobot/help/F/object/botbc.txt
+share/games/colobot/help/F/object/botbj.txt
+share/games/colobot/help/F/object/botbr.txt
+share/games/colobot/help/F/object/botbs.txt
+share/games/colobot/help/F/object/botdraw.txt
+share/games/colobot/help/F/object/botfc.txt
+share/games/colobot/help/F/object/botfj.txt
+share/games/colobot/help/F/object/botfr.txt
+share/games/colobot/help/F/object/botfs.txt
+share/games/colobot/help/F/object/botgc.txt
+share/games/colobot/help/F/object/botgj.txt
+share/games/colobot/help/F/object/botgr.txt
+share/games/colobot/help/F/object/botgs.txt
+share/games/colobot/help/F/object/botoc.txt
+share/games/colobot/help/F/object/botoj.txt
+share/games/colobot/help/F/object/botor.txt
+share/games/colobot/help/F/object/botos.txt
+share/games/colobot/help/F/object/botphaz.txt
+share/games/colobot/help/F/object/botrecy.txt
+share/games/colobot/help/F/object/botsc.txt
+share/games/colobot/help/F/object/botshld.txt
+share/games/colobot/help/F/object/botsj.txt
+share/games/colobot/help/F/object/botsr.txt
+share/games/colobot/help/F/object/botss.txt
+share/games/colobot/help/F/object/botsub.txt
+share/games/colobot/help/F/object/bottarg.txt
+share/games/colobot/help/F/object/bottr.txt
+share/games/colobot/help/F/object/bottump.txt
+share/games/colobot/help/F/object/bullet.txt
+share/games/colobot/help/F/object/captor.txt
+share/games/colobot/help/F/object/convert.txt
+share/games/colobot/help/F/object/derrick.txt
+share/games/colobot/help/F/object/destroy.txt
+share/games/colobot/help/F/object/egg.txt
+share/games/colobot/help/F/object/energy.txt
+share/games/colobot/help/F/object/enerspot.txt
+share/games/colobot/help/F/object/exchange.txt
+share/games/colobot/help/F/object/factory.txt
+share/games/colobot/help/F/object/flag.txt
+share/games/colobot/help/F/object/goal.txt
+share/games/colobot/help/F/object/human.txt
+share/games/colobot/help/F/object/huston.txt
+share/games/colobot/help/F/object/key.txt
+share/games/colobot/help/F/object/labo.txt
+share/games/colobot/help/F/object/lrv.txt
+share/games/colobot/help/F/object/mine.txt
+share/games/colobot/help/F/object/mother.txt
+share/games/colobot/help/F/object/nest.txt
+share/games/colobot/help/F/object/nuclear.txt
+share/games/colobot/help/F/object/power.txt
+share/games/colobot/help/F/object/radar.txt
+share/games/colobot/help/F/object/repair.txt
+share/games/colobot/help/F/object/research.txt
+share/games/colobot/help/F/object/ruin.txt
+share/games/colobot/help/F/object/safe.txt
+share/games/colobot/help/F/object/spider.txt
+share/games/colobot/help/F/object/start.txt
+share/games/colobot/help/F/object/station.txt
+share/games/colobot/help/F/object/stonspot.txt
+share/games/colobot/help/F/object/target1.txt
+share/games/colobot/help/F/object/target2.txt
+share/games/colobot/help/F/object/titan.txt
+share/games/colobot/help/F/object/titanore.txt
+share/games/colobot/help/F/object/tnt.txt
+share/games/colobot/help/F/object/tower.txt
+share/games/colobot/help/F/object/uranore.txt
+share/games/colobot/help/F/object/uranspot.txt
+share/games/colobot/help/F/object/wasp.txt
+share/games/colobot/help/F/object/waypoint.txt
+share/games/colobot/help/F/object/worm.txt
+share/games/colobot/help/F/object/wreck.txt
+share/games/colobot/help/F/programs/10_FollowPhazer.txt
+share/games/colobot/help/F/programs/1_SwitchCell1.txt
+share/games/colobot/help/F/programs/1_SwitchCell1_link.txt
+share/games/colobot/help/F/programs/2_Recharge1.txt
+share/games/colobot/help/F/programs/2_Recharge1_link.txt
+share/games/colobot/help/F/programs/3_Recharge2.txt
+share/games/colobot/help/F/programs/3_Recharge2_link.txt
+share/games/colobot/help/F/programs/4_CollectTitanium1.txt
+share/games/colobot/help/F/programs/5_CollectTitanium2.txt
+share/games/colobot/help/F/programs/5_CollectTitanium2_link.txt
+share/games/colobot/help/F/programs/6_KillAnt1.txt
+share/games/colobot/help/F/programs/6_KillAnt1_link.txt
+share/games/colobot/help/F/programs/7_CollectTitanium3.txt
+share/games/colobot/help/F/programs/8_ServiceTower1.txt
+share/games/colobot/help/F/programs/8_ServiceTower1_link.txt
+share/games/colobot/help/F/programs/9_terranova.txt
+share/games/colobot/help/F/win.txt
+share/games/colobot/help/P/authors.txt
+share/games/colobot/help/P/battles.txt
+share/games/colobot/help/P/cbot.txt
+share/games/colobot/help/P/cbot/abstime.txt
+share/games/colobot/help/P/cbot/acos.txt
+share/games/colobot/help/P/cbot/aim.txt
+share/games/colobot/help/P/cbot/array.txt
+share/games/colobot/help/P/cbot/asin.txt
+share/games/colobot/help/P/cbot/atan.txt
+share/games/colobot/help/P/cbot/atan2.txt
+share/games/colobot/help/P/cbot/bloc.txt
+share/games/colobot/help/P/cbot/bool.txt
+share/games/colobot/help/P/cbot/break.txt
+share/games/colobot/help/P/cbot/build.txt
+share/games/colobot/help/P/cbot/buildingenabled.txt
+share/games/colobot/help/P/cbot/busy.txt
+share/games/colobot/help/P/cbot/canbuild.txt
+share/games/colobot/help/P/cbot/canresearch.txt
+share/games/colobot/help/P/cbot/category.txt
+share/games/colobot/help/P/cbot/ceil.txt
+share/games/colobot/help/P/cbot/class.txt
+share/games/colobot/help/P/cbot/close.txt
+share/games/colobot/help/P/cbot/colors.txt
+share/games/colobot/help/P/cbot/cond.txt
+share/games/colobot/help/P/cbot/continue.txt
+share/games/colobot/help/P/cbot/cos.txt
+share/games/colobot/help/P/cbot/deletef.txt
+share/games/colobot/help/P/cbot/delinfo.txt
+share/games/colobot/help/P/cbot/destroy.txt
+share/games/colobot/help/P/cbot/detect.txt
+share/games/colobot/help/P/cbot/direct.txt
+share/games/colobot/help/P/cbot/dist.txt
+share/games/colobot/help/P/cbot/dist2d.txt
+share/games/colobot/help/P/cbot/do.txt
+share/games/colobot/help/P/cbot/drop.txt
+share/games/colobot/help/P/cbot/eof.txt
+share/games/colobot/help/P/cbot/errmode.txt
+share/games/colobot/help/P/cbot/expr.txt
+share/games/colobot/help/P/cbot/extends.txt
+share/games/colobot/help/P/cbot/extern.txt
+share/games/colobot/help/P/cbot/factory.txt
+share/games/colobot/help/P/cbot/false.txt
+share/games/colobot/help/P/cbot/file.txt
+share/games/colobot/help/P/cbot/fire.txt
+share/games/colobot/help/P/cbot/flatgrnd.txt
+share/games/colobot/help/P/cbot/flatspace.txt
+share/games/colobot/help/P/cbot/float.txt
+share/games/colobot/help/P/cbot/floor.txt
+share/games/colobot/help/P/cbot/for.txt
+share/games/colobot/help/P/cbot/function.txt
+share/games/colobot/help/P/cbot/goto.txt
+share/games/colobot/help/P/cbot/grab.txt
+share/games/colobot/help/P/cbot/if.txt
+share/games/colobot/help/P/cbot/int.txt
+share/games/colobot/help/P/cbot/jet.txt
+share/games/colobot/help/P/cbot/message.txt
+share/games/colobot/help/P/cbot/motor.txt
+share/games/colobot/help/P/cbot/move.txt
+share/games/colobot/help/P/cbot/nan.txt
+share/games/colobot/help/P/cbot/new.txt
+share/games/colobot/help/P/cbot/null.txt
+share/games/colobot/help/P/cbot/object.txt
+share/games/colobot/help/P/cbot/open.txt
+share/games/colobot/help/P/cbot/openfile.txt
+share/games/colobot/help/P/cbot/pencolor.txt
+share/games/colobot/help/P/cbot/pendown.txt
+share/games/colobot/help/P/cbot/penup.txt
+share/games/colobot/help/P/cbot/penwidth.txt
+share/games/colobot/help/P/cbot/point.txt
+share/games/colobot/help/P/cbot/pointer.txt
+share/games/colobot/help/P/cbot/pow.txt
+share/games/colobot/help/P/cbot/private.txt
+share/games/colobot/help/P/cbot/produce.txt
+share/games/colobot/help/P/cbot/protected.txt
+share/games/colobot/help/P/cbot/public.txt
+share/games/colobot/help/P/cbot/radar.txt
+share/games/colobot/help/P/cbot/radarall.txt
+share/games/colobot/help/P/cbot/rand.txt
+share/games/colobot/help/P/cbot/readln.txt
+share/games/colobot/help/P/cbot/receive.txt
+share/games/colobot/help/P/cbot/recycle.txt
+share/games/colobot/help/P/cbot/research.txt
+share/games/colobot/help/P/cbot/researched.txt
+share/games/colobot/help/P/cbot/researches.txt
+share/games/colobot/help/P/cbot/retobj.txt
+share/games/colobot/help/P/cbot/return.txt
+share/games/colobot/help/P/cbot/round.txt
+share/games/colobot/help/P/cbot/search.txt
+share/games/colobot/help/P/cbot/send.txt
+share/games/colobot/help/P/cbot/shield.txt
+share/games/colobot/help/P/cbot/sin.txt
+share/games/colobot/help/P/cbot/sizeof.txt
+share/games/colobot/help/P/cbot/sniff.txt
+share/games/colobot/help/P/cbot/space.txt
+share/games/colobot/help/P/cbot/sqrt.txt
+share/games/colobot/help/P/cbot/static.txt
+share/games/colobot/help/P/cbot/strfind.txt
+share/games/colobot/help/P/cbot/string.txt
+share/games/colobot/help/P/cbot/strleft.txt
+share/games/colobot/help/P/cbot/strlen.txt
+share/games/colobot/help/P/cbot/strlower.txt
+share/games/colobot/help/P/cbot/strmid.txt
+share/games/colobot/help/P/cbot/strright.txt
+share/games/colobot/help/P/cbot/strupper.txt
+share/games/colobot/help/P/cbot/strval.txt
+share/games/colobot/help/P/cbot/super.txt
+share/games/colobot/help/P/cbot/switch.txt
+share/games/colobot/help/P/cbot/synchro.txt
+share/games/colobot/help/P/cbot/takeoff.txt
+share/games/colobot/help/P/cbot/tan.txt
+share/games/colobot/help/P/cbot/term.txt
+share/games/colobot/help/P/cbot/testinfo.txt
+share/games/colobot/help/P/cbot/this.txt
+share/games/colobot/help/P/cbot/thump.txt
+share/games/colobot/help/P/cbot/topo.txt
+share/games/colobot/help/P/cbot/true.txt
+share/games/colobot/help/P/cbot/trunc.txt
+share/games/colobot/help/P/cbot/turn.txt
+share/games/colobot/help/P/cbot/type.txt
+share/games/colobot/help/P/cbot/var.txt
+share/games/colobot/help/P/cbot/void.txt
+share/games/colobot/help/P/cbot/wait.txt
+share/games/colobot/help/P/cbot/while.txt
+share/games/colobot/help/P/cbot/writeln.txt
+share/games/colobot/help/P/cheats.txt
+share/games/colobot/help/P/command.txt
+share/games/colobot/help/P/freehelp.txt
+share/games/colobot/help/P/licences.txt
+share/games/colobot/help/P/navig.txt
+share/games/colobot/help/P/object/ant.txt
+share/games/colobot/help/P/object/atomic.txt
+share/games/colobot/help/P/object/barrier.txt
+share/games/colobot/help/P/object/base.txt
+share/games/colobot/help/P/object/bbox.txt
+share/games/colobot/help/P/object/botbc.txt
+share/games/colobot/help/P/object/botbj.txt
+share/games/colobot/help/P/object/botbr.txt
+share/games/colobot/help/P/object/botbs.txt
+share/games/colobot/help/P/object/botdraw.txt
+share/games/colobot/help/P/object/botfc.txt
+share/games/colobot/help/P/object/botfj.txt
+share/games/colobot/help/P/object/botfr.txt
+share/games/colobot/help/P/object/botfs.txt
+share/games/colobot/help/P/object/botgc.txt
+share/games/colobot/help/P/object/botgj.txt
+share/games/colobot/help/P/object/botgr.txt
+share/games/colobot/help/P/object/botgs.txt
+share/games/colobot/help/P/object/botoc.txt
+share/games/colobot/help/P/object/botoj.txt
+share/games/colobot/help/P/object/botor.txt
+share/games/colobot/help/P/object/botos.txt
+share/games/colobot/help/P/object/botphaz.txt
+share/games/colobot/help/P/object/botrecy.txt
+share/games/colobot/help/P/object/botsc.txt
+share/games/colobot/help/P/object/botshld.txt
+share/games/colobot/help/P/object/botsj.txt
+share/games/colobot/help/P/object/botsr.txt
+share/games/colobot/help/P/object/botss.txt
+share/games/colobot/help/P/object/botsub.txt
+share/games/colobot/help/P/object/bottarg.txt
+share/games/colobot/help/P/object/bottr.txt
+share/games/colobot/help/P/object/bottump.txt
+share/games/colobot/help/P/object/bullet.txt
+share/games/colobot/help/P/object/captor.txt
+share/games/colobot/help/P/object/convert.txt
+share/games/colobot/help/P/object/derrick.txt
+share/games/colobot/help/P/object/destroy.txt
+share/games/colobot/help/P/object/egg.txt
+share/games/colobot/help/P/object/energy.txt
+share/games/colobot/help/P/object/enerspot.txt
+share/games/colobot/help/P/object/exchange.txt
+share/games/colobot/help/P/object/factory.txt
+share/games/colobot/help/P/object/flag.txt
+share/games/colobot/help/P/object/goal.txt
+share/games/colobot/help/P/object/human.txt
+share/games/colobot/help/P/object/huston.txt
+share/games/colobot/help/P/object/key.txt
+share/games/colobot/help/P/object/labo.txt
+share/games/colobot/help/P/object/lrv.txt
+share/games/colobot/help/P/object/mine.txt
+share/games/colobot/help/P/object/mother.txt
+share/games/colobot/help/P/object/nest.txt
+share/games/colobot/help/P/object/nuclear.txt
+share/games/colobot/help/P/object/power.txt
+share/games/colobot/help/P/object/radar.txt
+share/games/colobot/help/P/object/repair.txt
+share/games/colobot/help/P/object/research.txt
+share/games/colobot/help/P/object/ruin.txt
+share/games/colobot/help/P/object/safe.txt
+share/games/colobot/help/P/object/spider.txt
+share/games/colobot/help/P/object/start.txt
+share/games/colobot/help/P/object/station.txt
+share/games/colobot/help/P/object/stonspot.txt
+share/games/colobot/help/P/object/target1.txt
+share/games/colobot/help/P/object/target2.txt
+share/games/colobot/help/P/object/titan.txt
+share/games/colobot/help/P/object/titanore.txt
+share/games/colobot/help/P/object/tnt.txt
+share/games/colobot/help/P/object/tower.txt
+share/games/colobot/help/P/object/uranore.txt
+share/games/colobot/help/P/object/uranspot.txt
+share/games/colobot/help/P/object/wasp.txt
+share/games/colobot/help/P/object/waypoint.txt
+share/games/colobot/help/P/object/worm.txt
+share/games/colobot/help/P/object/wreck.txt
+share/games/colobot/help/P/programs/10_FollowPhazer.txt
+share/games/colobot/help/P/programs/1_SwitchCell1.txt
+share/games/colobot/help/P/programs/1_SwitchCell1_link.txt
+share/games/colobot/help/P/programs/2_Recharge1.txt
+share/games/colobot/help/P/programs/2_Recharge1_link.txt
+share/games/colobot/help/P/programs/3_Recharge2.txt
+share/games/colobot/help/P/programs/3_Recharge2_link.txt
+share/games/colobot/help/P/programs/4_CollectTitanium1.txt
+share/games/colobot/help/P/programs/5_CollectTitanium2.txt
+share/games/colobot/help/P/programs/5_CollectTitanium2_link.txt
+share/games/colobot/help/P/programs/6_KillAnt1.txt
+share/games/colobot/help/P/programs/6_KillAnt1_link.txt
+share/games/colobot/help/P/programs/7_CollectTitanium3.txt
+share/games/colobot/help/P/programs/8_ServiceTower1.txt
+share/games/colobot/help/P/programs/8_ServiceTower1_link.txt
+share/games/colobot/help/P/programs/9_terranova.txt
+share/games/colobot/help/P/win.txt
+share/games/colobot/help/R/authors.txt
+share/games/colobot/help/R/battles.txt
+share/games/colobot/help/R/cbot.txt
+share/games/colobot/help/R/cbot/abstime.txt
+share/games/colobot/help/R/cbot/acos.txt
+share/games/colobot/help/R/cbot/aim.txt
+share/games/colobot/help/R/cbot/array.txt
+share/games/colobot/help/R/cbot/asin.txt
+share/games/colobot/help/R/cbot/atan.txt
+share/games/colobot/help/R/cbot/atan2.txt
+share/games/colobot/help/R/cbot/bloc.txt
+share/games/colobot/help/R/cbot/bool.txt
+share/games/colobot/help/R/cbot/break.txt
+share/games/colobot/help/R/cbot/build.txt
+share/games/colobot/help/R/cbot/buildingenabled.txt
+share/games/colobot/help/R/cbot/busy.txt
+share/games/colobot/help/R/cbot/canbuild.txt
+share/games/colobot/help/R/cbot/canresearch.txt
+share/games/colobot/help/R/cbot/category.txt
+share/games/colobot/help/R/cbot/ceil.txt
+share/games/colobot/help/R/cbot/class.txt
+share/games/colobot/help/R/cbot/close.txt
+share/games/colobot/help/R/cbot/colors.txt
+share/games/colobot/help/R/cbot/cond.txt
+share/games/colobot/help/R/cbot/continue.txt
+share/games/colobot/help/R/cbot/cos.txt
+share/games/colobot/help/R/cbot/deletef.txt
+share/games/colobot/help/R/cbot/delinfo.txt
+share/games/colobot/help/R/cbot/destroy.txt
+share/games/colobot/help/R/cbot/detect.txt
+share/games/colobot/help/R/cbot/direct.txt
+share/games/colobot/help/R/cbot/dist.txt
+share/games/colobot/help/R/cbot/dist2d.txt
+share/games/colobot/help/R/cbot/do.txt
+share/games/colobot/help/R/cbot/drop.txt
+share/games/colobot/help/R/cbot/eof.txt
+share/games/colobot/help/R/cbot/errmode.txt
+share/games/colobot/help/R/cbot/expr.txt
+share/games/colobot/help/R/cbot/extends.txt
+share/games/colobot/help/R/cbot/extern.txt
+share/games/colobot/help/R/cbot/factory.txt
+share/games/colobot/help/R/cbot/false.txt
+share/games/colobot/help/R/cbot/file.txt
+share/games/colobot/help/R/cbot/fire.txt
+share/games/colobot/help/R/cbot/flatgrnd.txt
+share/games/colobot/help/R/cbot/flatspace.txt
+share/games/colobot/help/R/cbot/float.txt
+share/games/colobot/help/R/cbot/floor.txt
+share/games/colobot/help/R/cbot/for.txt
+share/games/colobot/help/R/cbot/function.txt
+share/games/colobot/help/R/cbot/goto.txt
+share/games/colobot/help/R/cbot/grab.txt
+share/games/colobot/help/R/cbot/if.txt
+share/games/colobot/help/R/cbot/int.txt
+share/games/colobot/help/R/cbot/jet.txt
+share/games/colobot/help/R/cbot/message.txt
+share/games/colobot/help/R/cbot/motor.txt
+share/games/colobot/help/R/cbot/move.txt
+share/games/colobot/help/R/cbot/nan.txt
+share/games/colobot/help/R/cbot/new.txt
+share/games/colobot/help/R/cbot/null.txt
+share/games/colobot/help/R/cbot/object.txt
+share/games/colobot/help/R/cbot/open.txt
+share/games/colobot/help/R/cbot/openfile.txt
+share/games/colobot/help/R/cbot/pencolor.txt
+share/games/colobot/help/R/cbot/pendown.txt
+share/games/colobot/help/R/cbot/penup.txt
+share/games/colobot/help/R/cbot/penwidth.txt
+share/games/colobot/help/R/cbot/point.txt
+share/games/colobot/help/R/cbot/pointer.txt
+share/games/colobot/help/R/cbot/pow.txt
+share/games/colobot/help/R/cbot/private.txt
+share/games/colobot/help/R/cbot/produce.txt
+share/games/colobot/help/R/cbot/protected.txt
+share/games/colobot/help/R/cbot/public.txt
+share/games/colobot/help/R/cbot/radar.txt
+share/games/colobot/help/R/cbot/radarall.txt
+share/games/colobot/help/R/cbot/rand.txt
+share/games/colobot/help/R/cbot/readln.txt
+share/games/colobot/help/R/cbot/receive.txt
+share/games/colobot/help/R/cbot/recycle.txt
+share/games/colobot/help/R/cbot/research.txt
+share/games/colobot/help/R/cbot/researched.txt
+share/games/colobot/help/R/cbot/researches.txt
+share/games/colobot/help/R/cbot/retobj.txt
+share/games/colobot/help/R/cbot/return.txt
+share/games/colobot/help/R/cbot/round.txt
+share/games/colobot/help/R/cbot/search.txt
+share/games/colobot/help/R/cbot/send.txt
+share/games/colobot/help/R/cbot/shield.txt
+share/games/colobot/help/R/cbot/sin.txt
+share/games/colobot/help/R/cbot/sizeof.txt
+share/games/colobot/help/R/cbot/sniff.txt
+share/games/colobot/help/R/cbot/space.txt
+share/games/colobot/help/R/cbot/sqrt.txt
+share/games/colobot/help/R/cbot/static.txt
+share/games/colobot/help/R/cbot/strfind.txt
+share/games/colobot/help/R/cbot/string.txt
+share/games/colobot/help/R/cbot/strleft.txt
+share/games/colobot/help/R/cbot/strlen.txt
+share/games/colobot/help/R/cbot/strlower.txt
+share/games/colobot/help/R/cbot/strmid.txt
+share/games/colobot/help/R/cbot/strright.txt
+share/games/colobot/help/R/cbot/strupper.txt
+share/games/colobot/help/R/cbot/strval.txt
+share/games/colobot/help/R/cbot/super.txt
+share/games/colobot/help/R/cbot/switch.txt
+share/games/colobot/help/R/cbot/synchro.txt
+share/games/colobot/help/R/cbot/takeoff.txt
+share/games/colobot/help/R/cbot/tan.txt
+share/games/colobot/help/R/cbot/term.txt
+share/games/colobot/help/R/cbot/testinfo.txt
+share/games/colobot/help/R/cbot/this.txt
+share/games/colobot/help/R/cbot/thump.txt
+share/games/colobot/help/R/cbot/topo.txt
+share/games/colobot/help/R/cbot/true.txt
+share/games/colobot/help/R/cbot/trunc.txt
+share/games/colobot/help/R/cbot/turn.txt
+share/games/colobot/help/R/cbot/type.txt
+share/games/colobot/help/R/cbot/var.txt
+share/games/colobot/help/R/cbot/void.txt
+share/games/colobot/help/R/cbot/wait.txt
+share/games/colobot/help/R/cbot/while.txt
+share/games/colobot/help/R/cbot/writeln.txt
+share/games/colobot/help/R/cheats.txt
+share/games/colobot/help/R/command.txt
+share/games/colobot/help/R/freehelp.txt
+share/games/colobot/help/R/licences.txt
+share/games/colobot/help/R/navig.txt
+share/games/colobot/help/R/object/ant.txt
+share/games/colobot/help/R/object/atomic.txt
+share/games/colobot/help/R/object/barrier.txt
+share/games/colobot/help/R/object/base.txt
+share/games/colobot/help/R/object/bbox.txt
+share/games/colobot/help/R/object/botbc.txt
+share/games/colobot/help/R/object/botbj.txt
+share/games/colobot/help/R/object/botbr.txt
+share/games/colobot/help/R/object/botbs.txt
+share/games/colobot/help/R/object/botdraw.txt
+share/games/colobot/help/R/object/botfc.txt
+share/games/colobot/help/R/object/botfj.txt
+share/games/colobot/help/R/object/botfr.txt
+share/games/colobot/help/R/object/botfs.txt
+share/games/colobot/help/R/object/botgc.txt
+share/games/colobot/help/R/object/botgj.txt
+share/games/colobot/help/R/object/botgr.txt
+share/games/colobot/help/R/object/botgs.txt
+share/games/colobot/help/R/object/botoc.txt
+share/games/colobot/help/R/object/botoj.txt
+share/games/colobot/help/R/object/botor.txt
+share/games/colobot/help/R/object/botos.txt
+share/games/colobot/help/R/object/botphaz.txt
+share/games/colobot/help/R/object/botrecy.txt
+share/games/colobot/help/R/object/botsc.txt
+share/games/colobot/help/R/object/botshld.txt
+share/games/colobot/help/R/object/botsj.txt
+share/games/colobot/help/R/object/botsr.txt
+share/games/colobot/help/R/object/botss.txt
+share/games/colobot/help/R/object/botsub.txt
+share/games/colobot/help/R/object/bottarg.txt
+share/games/colobot/help/R/object/bottr.txt
+share/games/colobot/help/R/object/bottump.txt
+share/games/colobot/help/R/object/bullet.txt
+share/games/colobot/help/R/object/captor.txt
+share/games/colobot/help/R/object/convert.txt
+share/games/colobot/help/R/object/derrick.txt
+share/games/colobot/help/R/object/destroy.txt
+share/games/colobot/help/R/object/egg.txt
+share/games/colobot/help/R/object/energy.txt
+share/games/colobot/help/R/object/enerspot.txt
+share/games/colobot/help/R/object/exchange.txt
+share/games/colobot/help/R/object/factory.txt
+share/games/colobot/help/R/object/flag.txt
+share/games/colobot/help/R/object/goal.txt
+share/games/colobot/help/R/object/human.txt
+share/games/colobot/help/R/object/huston.txt
+share/games/colobot/help/R/object/key.txt
+share/games/colobot/help/R/object/labo.txt
+share/games/colobot/help/R/object/lrv.txt
+share/games/colobot/help/R/object/mine.txt
+share/games/colobot/help/R/object/mother.txt
+share/games/colobot/help/R/object/nest.txt
+share/games/colobot/help/R/object/nuclear.txt
+share/games/colobot/help/R/object/power.txt
+share/games/colobot/help/R/object/radar.txt
+share/games/colobot/help/R/object/repair.txt
+share/games/colobot/help/R/object/research.txt
+share/games/colobot/help/R/object/ruin.txt
+share/games/colobot/help/R/object/safe.txt
+share/games/colobot/help/R/object/spider.txt
+share/games/colobot/help/R/object/start.txt
+share/games/colobot/help/R/object/station.txt
+share/games/colobot/help/R/object/stonspot.txt
+share/games/colobot/help/R/object/target1.txt
+share/games/colobot/help/R/object/target2.txt
+share/games/colobot/help/R/object/titan.txt
+share/games/colobot/help/R/object/titanore.txt
+share/games/colobot/help/R/object/tnt.txt
+share/games/colobot/help/R/object/tower.txt
+share/games/colobot/help/R/object/uranore.txt
+share/games/colobot/help/R/object/uranspot.txt
+share/games/colobot/help/R/object/wasp.txt
+share/games/colobot/help/R/object/waypoint.txt
+share/games/colobot/help/R/object/worm.txt
+share/games/colobot/help/R/object/wreck.txt
+share/games/colobot/help/R/programs/10_FollowPhazer.txt
+share/games/colobot/help/R/programs/1_SwitchCell1.txt
+share/games/colobot/help/R/programs/1_SwitchCell1_link.txt
+share/games/colobot/help/R/programs/2_Recharge1.txt
+share/games/colobot/help/R/programs/2_Recharge1_link.txt
+share/games/colobot/help/R/programs/3_Recharge2.txt
+share/games/colobot/help/R/programs/3_Recharge2_link.txt
+share/games/colobot/help/R/programs/4_CollectTitanium1.txt
+share/games/colobot/help/R/programs/5_CollectTitanium2.txt
+share/games/colobot/help/R/programs/5_CollectTitanium2_link.txt
+share/games/colobot/help/R/programs/6_KillAnt1.txt
+share/games/colobot/help/R/programs/6_KillAnt1_link.txt
+share/games/colobot/help/R/programs/7_CollectTitanium3.txt
+share/games/colobot/help/R/programs/8_ServiceTower1.txt
+share/games/colobot/help/R/programs/8_ServiceTower1_link.txt
+share/games/colobot/help/R/programs/9_terranova.txt
+share/games/colobot/help/R/win.txt
+share/games/colobot/icons/ant.png
+share/games/colobot/icons/atomic.png
+share/games/colobot/icons/base.png
+share/games/colobot/icons/bbox.png
+share/games/colobot/icons/botbc.png
+share/games/colobot/icons/botbj.png
+share/games/colobot/icons/botbr.png
+share/games/colobot/icons/botbs.png
+share/games/colobot/icons/botfc.png
+share/games/colobot/icons/botfj.png
+share/games/colobot/icons/botfr.png
+share/games/colobot/icons/botfs.png
+share/games/colobot/icons/botgc.png
+share/games/colobot/icons/botgj.png
+share/games/colobot/icons/botgr.png
+share/games/colobot/icons/botgs.png
+share/games/colobot/icons/botoc.png
+share/games/colobot/icons/botoj.png
+share/games/colobot/icons/botor.png
+share/games/colobot/icons/botos.png
+share/games/colobot/icons/botphaz.png
+share/games/colobot/icons/botrecy.png
+share/games/colobot/icons/botsc.png
+share/games/colobot/icons/botshld.png
+share/games/colobot/icons/botsj.png
+share/games/colobot/icons/botsr.png
+share/games/colobot/icons/botss.png
+share/games/colobot/icons/botsub.png
+share/games/colobot/icons/bottarg.png
+share/games/colobot/icons/bottr.png
+share/games/colobot/icons/bottump.png
+share/games/colobot/icons/bullet.png
+share/games/colobot/icons/captor.png
+share/games/colobot/icons/convert.png
+share/games/colobot/icons/derrick.png
+share/games/colobot/icons/destroy.png
+share/games/colobot/icons/energy.png
+share/games/colobot/icons/enerspot.png
+share/games/colobot/icons/factory.png
+share/games/colobot/icons/flag.png
+share/games/colobot/icons/human.png
+share/games/colobot/icons/huston.png
+share/games/colobot/icons/info.png
+share/games/colobot/icons/key.png
+share/games/colobot/icons/labo.png
+share/games/colobot/icons/mine.png
+share/games/colobot/icons/mother.png
+share/games/colobot/icons/nuclear.png
+share/games/colobot/icons/power.png
+share/games/colobot/icons/productionline1.png
+share/games/colobot/icons/productionline1.svg
+share/games/colobot/icons/radar.png
+share/games/colobot/icons/radar1.png
+share/games/colobot/icons/radar2.png
+share/games/colobot/icons/radar2_cs.png
+share/games/colobot/icons/repair.png
+share/games/colobot/icons/research.png
+share/games/colobot/icons/safe.png
+share/games/colobot/icons/sniff1.png
+share/games/colobot/icons/spider.png
+share/games/colobot/icons/station.png
+share/games/colobot/icons/stonspot.png
+share/games/colobot/icons/target1.png
+share/games/colobot/icons/target2.png
+share/games/colobot/icons/tballis1.png
+share/games/colobot/icons/tdragst1.png
+share/games/colobot/icons/tdragst1_cs.png
+share/games/colobot/icons/texch3.png
+share/games/colobot/icons/tfor1.png
+share/games/colobot/icons/tfor2.png
+share/games/colobot/icons/tinfo1.png
+share/games/colobot/icons/titan.png
+share/games/colobot/icons/titanore.png
+share/games/colobot/icons/tlaby1.png
+share/games/colobot/icons/tline0.png
+share/games/colobot/icons/tnt.png
+share/games/colobot/icons/tower.png
+share/games/colobot/icons/tproc1a.png
+share/games/colobot/icons/tproc1b.png
+share/games/colobot/icons/tproc1b_cs.png
+share/games/colobot/icons/tproc2.png
+share/games/colobot/icons/tpyta.png
+share/games/colobot/icons/tremot1a.png
+share/games/colobot/icons/tremot1a_cs.png
+share/games/colobot/icons/tremot2a.png
+share/games/colobot/icons/tremot2a_cs.png
+share/games/colobot/icons/tremot2b.png
+share/games/colobot/icons/trepeat.png
+share/games/colobot/icons/ttable1.png
+share/games/colobot/icons/ttable2.png
+share/games/colobot/icons/ttable3.png
+share/games/colobot/icons/ttable4.png
+share/games/colobot/icons/tvar3.png
+share/games/colobot/icons/uranore.png
+share/games/colobot/icons/uranspot.png
+share/games/colobot/icons/wasp.png
+share/games/colobot/icons/waypoint.png
+share/games/colobot/icons/worm.png
+share/games/colobot/levels/battles/chapter001/chaptertitle.txt
+share/games/colobot/levels/battles/chapter001/level001/help/help.B.txt
+share/games/colobot/levels/battles/chapter001/level001/help/help.C.txt
+share/games/colobot/levels/battles/chapter001/level001/help/help.D.txt
+share/games/colobot/levels/battles/chapter001/level001/help/help.E.txt
+share/games/colobot/levels/battles/chapter001/level001/help/help.F.txt
+share/games/colobot/levels/battles/chapter001/level001/help/help.P.txt
+share/games/colobot/levels/battles/chapter001/level001/help/help.R.txt
+share/games/colobot/levels/battles/chapter001/level001/scene.txt
+share/games/colobot/levels/battles/chapter001/level002/help/help.B.txt
+share/games/colobot/levels/battles/chapter001/level002/help/help.C.txt
+share/games/colobot/levels/battles/chapter001/level002/help/help.D.txt
+share/games/colobot/levels/battles/chapter001/level002/help/help.E.txt
+share/games/colobot/levels/battles/chapter001/level002/help/help.F.txt
+share/games/colobot/levels/battles/chapter001/level002/help/help.P.txt
+share/games/colobot/levels/battles/chapter001/level002/help/help.R.txt
+share/games/colobot/levels/battles/chapter001/level002/program.txt
+share/games/colobot/levels/battles/chapter001/level002/scene.txt
+share/games/colobot/levels/battles/chapter001/level003/help/help.B.txt
+share/games/colobot/levels/battles/chapter001/level003/help/help.C.txt
+share/games/colobot/levels/battles/chapter001/level003/help/help.D.txt
+share/games/colobot/levels/battles/chapter001/level003/help/help.E.txt
+share/games/colobot/levels/battles/chapter001/level003/help/help.F.txt
+share/games/colobot/levels/battles/chapter001/level003/help/help.P.txt
+share/games/colobot/levels/battles/chapter001/level003/help/help.R.txt
+share/games/colobot/levels/battles/chapter001/level003/scene.txt
+share/games/colobot/levels/battles/chapter002/chaptertitle.txt
+share/games/colobot/levels/battles/chapter002/level001/help/help.B.txt
+share/games/colobot/levels/battles/chapter002/level001/help/help.C.txt
+share/games/colobot/levels/battles/chapter002/level001/help/help.D.txt
+share/games/colobot/levels/battles/chapter002/level001/help/help.E.txt
+share/games/colobot/levels/battles/chapter002/level001/help/help.F.txt
+share/games/colobot/levels/battles/chapter002/level001/help/help.P.txt
+share/games/colobot/levels/battles/chapter002/level001/help/help.R.txt
+share/games/colobot/levels/battles/chapter002/level001/scene.txt
+share/games/colobot/levels/battles/chapter002/level002/help/help.B.txt
+share/games/colobot/levels/battles/chapter002/level002/help/help.C.txt
+share/games/colobot/levels/battles/chapter002/level002/help/help.D.txt
+share/games/colobot/levels/battles/chapter002/level002/help/help.E.txt
+share/games/colobot/levels/battles/chapter002/level002/help/help.F.txt
+share/games/colobot/levels/battles/chapter002/level002/help/help.P.txt
+share/games/colobot/levels/battles/chapter002/level002/help/help.R.txt
+share/games/colobot/levels/battles/chapter002/level002/program.txt
+share/games/colobot/levels/battles/chapter002/level002/scene.txt
+share/games/colobot/levels/battles/chapter002/level003/help/help.B.txt
+share/games/colobot/levels/battles/chapter002/level003/help/help.C.txt
+share/games/colobot/levels/battles/chapter002/level003/help/help.D.txt
+share/games/colobot/levels/battles/chapter002/level003/help/help.E.txt
+share/games/colobot/levels/battles/chapter002/level003/help/help.F.txt
+share/games/colobot/levels/battles/chapter002/level003/help/help.P.txt
+share/games/colobot/levels/battles/chapter002/level003/help/help.R.txt
+share/games/colobot/levels/battles/chapter002/level003/scene.txt
+share/games/colobot/levels/battles/level_common.txt
+share/games/colobot/levels/battles/relief.png
+share/games/colobot/levels/battles/res.png
+share/games/colobot/levels/challenges/chapter001/chaptertitle.txt
+share/games/colobot/levels/challenges/chapter001/level001/help/help.B.txt
+share/games/colobot/levels/challenges/chapter001/level001/help/help.C.txt
+share/games/colobot/levels/challenges/chapter001/level001/help/help.D.txt
+share/games/colobot/levels/challenges/chapter001/level001/help/help.E.txt
+share/games/colobot/levels/challenges/chapter001/level001/help/help.F.txt
+share/games/colobot/levels/challenges/chapter001/level001/help/help.P.txt
+share/games/colobot/levels/challenges/chapter001/level001/help/help.R.txt
+share/games/colobot/levels/challenges/chapter001/level001/scene.txt
+share/games/colobot/levels/challenges/chapter001/level002/help/help.B.txt
+share/games/colobot/levels/challenges/chapter001/level002/help/help.C.txt
+share/games/colobot/levels/challenges/chapter001/level002/help/help.D.txt
+share/games/colobot/levels/challenges/chapter001/level002/help/help.E.txt
+share/games/colobot/levels/challenges/chapter001/level002/help/help.F.txt
+share/games/colobot/levels/challenges/chapter001/level002/help/help.P.txt
+share/games/colobot/levels/challenges/chapter001/level002/help/help.R.txt
+share/games/colobot/levels/challenges/chapter001/level002/scene.txt
+share/games/colobot/levels/challenges/chapter001/level003/help/help.B.txt
+share/games/colobot/levels/challenges/chapter001/level003/help/help.C.txt
+share/games/colobot/levels/challenges/chapter001/level003/help/help.D.txt
+share/games/colobot/levels/challenges/chapter001/level003/help/help.E.txt
+share/games/colobot/levels/challenges/chapter001/level003/help/help.F.txt
+share/games/colobot/levels/challenges/chapter001/level003/help/help.P.txt
+share/games/colobot/levels/challenges/chapter001/level003/help/help.R.txt
+share/games/colobot/levels/challenges/chapter001/level003/scene.txt
+share/games/colobot/levels/challenges/chapter001/level004/help/help.B.txt
+share/games/colobot/levels/challenges/chapter001/level004/help/help.C.txt
+share/games/colobot/levels/challenges/chapter001/level004/help/help.D.txt
+share/games/colobot/levels/challenges/chapter001/level004/help/help.E.txt
+share/games/colobot/levels/challenges/chapter001/level004/help/help.F.txt
+share/games/colobot/levels/challenges/chapter001/level004/help/help.P.txt
+share/games/colobot/levels/challenges/chapter001/level004/help/help.R.txt
+share/games/colobot/levels/challenges/chapter001/level004/scene.txt
+share/games/colobot/levels/challenges/chapter002/chaptertitle.txt
+share/games/colobot/levels/challenges/chapter002/level001/help/help.B.txt
+share/games/colobot/levels/challenges/chapter002/level001/help/help.C.txt
+share/games/colobot/levels/challenges/chapter002/level001/help/help.D.txt
+share/games/colobot/levels/challenges/chapter002/level001/help/help.E.txt
+share/games/colobot/levels/challenges/chapter002/level001/help/help.F.txt
+share/games/colobot/levels/challenges/chapter002/level001/help/help.P.txt
+share/games/colobot/levels/challenges/chapter002/level001/help/help.R.txt
+share/games/colobot/levels/challenges/chapter002/level001/scene.txt
+share/games/colobot/levels/challenges/chapter002/level002/help/help.B.txt
+share/games/colobot/levels/challenges/chapter002/level002/help/help.C.txt
+share/games/colobot/levels/challenges/chapter002/level002/help/help.D.txt
+share/games/colobot/levels/challenges/chapter002/level002/help/help.E.txt
+share/games/colobot/levels/challenges/chapter002/level002/help/help.F.txt
+share/games/colobot/levels/challenges/chapter002/level002/help/help.P.txt
+share/games/colobot/levels/challenges/chapter002/level002/help/help.R.txt
+share/games/colobot/levels/challenges/chapter002/level002/scene.txt
+share/games/colobot/levels/challenges/chapter002/level003/help/help.B.txt
+share/games/colobot/levels/challenges/chapter002/level003/help/help.C.txt
+share/games/colobot/levels/challenges/chapter002/level003/help/help.D.txt
+share/games/colobot/levels/challenges/chapter002/level003/help/help.E.txt
+share/games/colobot/levels/challenges/chapter002/level003/help/help.F.txt
+share/games/colobot/levels/challenges/chapter002/level003/help/help.P.txt
+share/games/colobot/levels/challenges/chapter002/level003/help/help.R.txt
+share/games/colobot/levels/challenges/chapter002/level003/scene.txt
+share/games/colobot/levels/challenges/chapter002/level004/help/help.B.txt
+share/games/colobot/levels/challenges/chapter002/level004/help/help.C.txt
+share/games/colobot/levels/challenges/chapter002/level004/help/help.D.txt
+share/games/colobot/levels/challenges/chapter002/level004/help/help.E.txt
+share/games/colobot/levels/challenges/chapter002/level004/help/help.F.txt
+share/games/colobot/levels/challenges/chapter002/level004/help/help.P.txt
+share/games/colobot/levels/challenges/chapter002/level004/help/help.R.txt
+share/games/colobot/levels/challenges/chapter002/level004/scene.txt
+share/games/colobot/levels/challenges/chapter002/level005/help/help.B.txt
+share/games/colobot/levels/challenges/chapter002/level005/help/help.C.txt
+share/games/colobot/levels/challenges/chapter002/level005/help/help.D.txt
+share/games/colobot/levels/challenges/chapter002/level005/help/help.E.txt
+share/games/colobot/levels/challenges/chapter002/level005/help/help.F.txt
+share/games/colobot/levels/challenges/chapter002/level005/help/help.P.txt
+share/games/colobot/levels/challenges/chapter002/level005/help/help.R.txt
+share/games/colobot/levels/challenges/chapter002/level005/scene.txt
+share/games/colobot/levels/challenges/chapter003/chaptertitle.txt
+share/games/colobot/levels/challenges/chapter003/level001/help/help.B.txt
+share/games/colobot/levels/challenges/chapter003/level001/help/help.C.txt
+share/games/colobot/levels/challenges/chapter003/level001/help/help.D.txt
+share/games/colobot/levels/challenges/chapter003/level001/help/help.E.txt
+share/games/colobot/levels/challenges/chapter003/level001/help/help.F.txt
+share/games/colobot/levels/challenges/chapter003/level001/help/help.P.txt
+share/games/colobot/levels/challenges/chapter003/level001/help/help.R.txt
+share/games/colobot/levels/challenges/chapter003/level001/scene.txt
+share/games/colobot/levels/challenges/chapter003/level002/help/help.B.txt
+share/games/colobot/levels/challenges/chapter003/level002/help/help.C.txt
+share/games/colobot/levels/challenges/chapter003/level002/help/help.D.txt
+share/games/colobot/levels/challenges/chapter003/level002/help/help.E.txt
+share/games/colobot/levels/challenges/chapter003/level002/help/help.F.txt
+share/games/colobot/levels/challenges/chapter003/level002/help/help.P.txt
+share/games/colobot/levels/challenges/chapter003/level002/help/help.R.txt
+share/games/colobot/levels/challenges/chapter003/level002/scene.txt
+share/games/colobot/levels/challenges/chapter004/chaptertitle.txt
+share/games/colobot/levels/challenges/chapter004/level001/help/help.B.txt
+share/games/colobot/levels/challenges/chapter004/level001/help/help.C.txt
+share/games/colobot/levels/challenges/chapter004/level001/help/help.D.txt
+share/games/colobot/levels/challenges/chapter004/level001/help/help.E.txt
+share/games/colobot/levels/challenges/chapter004/level001/help/help.F.txt
+share/games/colobot/levels/challenges/chapter004/level001/help/help.P.txt
+share/games/colobot/levels/challenges/chapter004/level001/help/help.R.txt
+share/games/colobot/levels/challenges/chapter004/level001/scene.txt
+share/games/colobot/levels/challenges/chapter004/level002/help/help.B.txt
+share/games/colobot/levels/challenges/chapter004/level002/help/help.C.txt
+share/games/colobot/levels/challenges/chapter004/level002/help/help.D.txt
+share/games/colobot/levels/challenges/chapter004/level002/help/help.E.txt
+share/games/colobot/levels/challenges/chapter004/level002/help/help.F.txt
+share/games/colobot/levels/challenges/chapter004/level002/help/help.P.txt
+share/games/colobot/levels/challenges/chapter004/level002/help/help.R.txt
+share/games/colobot/levels/challenges/chapter004/level002/scene.txt
+share/games/colobot/levels/exercises/chapter001/chaptertitle.txt
+share/games/colobot/levels/exercises/chapter001/level001/help/help.B.txt
+share/games/colobot/levels/exercises/chapter001/level001/help/help.C.txt
+share/games/colobot/levels/exercises/chapter001/level001/help/help.D.txt
+share/games/colobot/levels/exercises/chapter001/level001/help/help.E.txt
+share/games/colobot/levels/exercises/chapter001/level001/help/help.F.txt
+share/games/colobot/levels/exercises/chapter001/level001/help/help.P.txt
+share/games/colobot/levels/exercises/chapter001/level001/help/help.R.txt
+share/games/colobot/levels/exercises/chapter001/level001/scene.txt
+share/games/colobot/levels/exercises/chapter001/level002/help/help.B.txt
+share/games/colobot/levels/exercises/chapter001/level002/help/help.C.txt
+share/games/colobot/levels/exercises/chapter001/level002/help/help.D.txt
+share/games/colobot/levels/exercises/chapter001/level002/help/help.E.txt
+share/games/colobot/levels/exercises/chapter001/level002/help/help.F.txt
+share/games/colobot/levels/exercises/chapter001/level002/help/help.P.txt
+share/games/colobot/levels/exercises/chapter001/level002/help/help.R.txt
+share/games/colobot/levels/exercises/chapter001/level002/scene.txt
+share/games/colobot/levels/exercises/chapter001/level003/help/help.B.txt
+share/games/colobot/levels/exercises/chapter001/level003/help/help.C.txt
+share/games/colobot/levels/exercises/chapter001/level003/help/help.D.txt
+share/games/colobot/levels/exercises/chapter001/level003/help/help.E.txt
+share/games/colobot/levels/exercises/chapter001/level003/help/help.F.txt
+share/games/colobot/levels/exercises/chapter001/level003/help/help.P.txt
+share/games/colobot/levels/exercises/chapter001/level003/help/help.R.txt
+share/games/colobot/levels/exercises/chapter001/level003/scene.txt
+share/games/colobot/levels/exercises/chapter001/level004/help/help.B.txt
+share/games/colobot/levels/exercises/chapter001/level004/help/help.C.txt
+share/games/colobot/levels/exercises/chapter001/level004/help/help.D.txt
+share/games/colobot/levels/exercises/chapter001/level004/help/help.E.txt
+share/games/colobot/levels/exercises/chapter001/level004/help/help.F.txt
+share/games/colobot/levels/exercises/chapter001/level004/help/help.P.txt
+share/games/colobot/levels/exercises/chapter001/level004/help/help.R.txt
+share/games/colobot/levels/exercises/chapter001/level004/scene.txt
+share/games/colobot/levels/exercises/chapter001/level005/help/help.B.txt
+share/games/colobot/levels/exercises/chapter001/level005/help/help.C.txt
+share/games/colobot/levels/exercises/chapter001/level005/help/help.D.txt
+share/games/colobot/levels/exercises/chapter001/level005/help/help.E.txt
+share/games/colobot/levels/exercises/chapter001/level005/help/help.F.txt
+share/games/colobot/levels/exercises/chapter001/level005/help/help.P.txt
+share/games/colobot/levels/exercises/chapter001/level005/help/help.R.txt
+share/games/colobot/levels/exercises/chapter001/level005/scene.txt
+share/games/colobot/levels/exercises/chapter001/level006/help/help.B.txt
+share/games/colobot/levels/exercises/chapter001/level006/help/help.C.txt
+share/games/colobot/levels/exercises/chapter001/level006/help/help.D.txt
+share/games/colobot/levels/exercises/chapter001/level006/help/help.E.txt
+share/games/colobot/levels/exercises/chapter001/level006/help/help.F.txt
+share/games/colobot/levels/exercises/chapter001/level006/help/help.P.txt
+share/games/colobot/levels/exercises/chapter001/level006/help/help.R.txt
+share/games/colobot/levels/exercises/chapter001/level006/scene.txt
+share/games/colobot/levels/exercises/chapter001/level007/help/help.B.txt
+share/games/colobot/levels/exercises/chapter001/level007/help/help.C.txt
+share/games/colobot/levels/exercises/chapter001/level007/help/help.D.txt
+share/games/colobot/levels/exercises/chapter001/level007/help/help.E.txt
+share/games/colobot/levels/exercises/chapter001/level007/help/help.F.txt
+share/games/colobot/levels/exercises/chapter001/level007/help/help.P.txt
+share/games/colobot/levels/exercises/chapter001/level007/help/help.R.txt
+share/games/colobot/levels/exercises/chapter001/level007/scene.txt
+share/games/colobot/levels/exercises/chapter002/chaptertitle.txt
+share/games/colobot/levels/exercises/chapter002/level001/help/help.B.txt
+share/games/colobot/levels/exercises/chapter002/level001/help/help.C.txt
+share/games/colobot/levels/exercises/chapter002/level001/help/help.D.txt
+share/games/colobot/levels/exercises/chapter002/level001/help/help.E.txt
+share/games/colobot/levels/exercises/chapter002/level001/help/help.F.txt
+share/games/colobot/levels/exercises/chapter002/level001/help/help.P.txt
+share/games/colobot/levels/exercises/chapter002/level001/help/help.R.txt
+share/games/colobot/levels/exercises/chapter002/level001/scene.txt
+share/games/colobot/levels/exercises/chapter002/level002/help/help.B.txt
+share/games/colobot/levels/exercises/chapter002/level002/help/help.C.txt
+share/games/colobot/levels/exercises/chapter002/level002/help/help.D.txt
+share/games/colobot/levels/exercises/chapter002/level002/help/help.E.txt
+share/games/colobot/levels/exercises/chapter002/level002/help/help.F.txt
+share/games/colobot/levels/exercises/chapter002/level002/help/help.P.txt
+share/games/colobot/levels/exercises/chapter002/level002/help/help.R.txt
+share/games/colobot/levels/exercises/chapter002/level002/scene.txt
+share/games/colobot/levels/exercises/chapter002/level003/help/help.B.txt
+share/games/colobot/levels/exercises/chapter002/level003/help/help.C.txt
+share/games/colobot/levels/exercises/chapter002/level003/help/help.D.txt
+share/games/colobot/levels/exercises/chapter002/level003/help/help.E.txt
+share/games/colobot/levels/exercises/chapter002/level003/help/help.F.txt
+share/games/colobot/levels/exercises/chapter002/level003/help/help.P.txt
+share/games/colobot/levels/exercises/chapter002/level003/help/help.R.txt
+share/games/colobot/levels/exercises/chapter002/level003/scene.txt
+share/games/colobot/levels/exercises/chapter002/level004/help/help.B.txt
+share/games/colobot/levels/exercises/chapter002/level004/help/help.C.txt
+share/games/colobot/levels/exercises/chapter002/level004/help/help.D.txt
+share/games/colobot/levels/exercises/chapter002/level004/help/help.E.txt
+share/games/colobot/levels/exercises/chapter002/level004/help/help.F.txt
+share/games/colobot/levels/exercises/chapter002/level004/help/help.P.txt
+share/games/colobot/levels/exercises/chapter002/level004/help/help.R.txt
+share/games/colobot/levels/exercises/chapter002/level004/scene.txt
+share/games/colobot/levels/exercises/chapter002/level005/help/help.B.txt
+share/games/colobot/levels/exercises/chapter002/level005/help/help.C.txt
+share/games/colobot/levels/exercises/chapter002/level005/help/help.D.txt
+share/games/colobot/levels/exercises/chapter002/level005/help/help.E.txt
+share/games/colobot/levels/exercises/chapter002/level005/help/help.F.txt
+share/games/colobot/levels/exercises/chapter002/level005/help/help.P.txt
+share/games/colobot/levels/exercises/chapter002/level005/help/help.R.txt
+share/games/colobot/levels/exercises/chapter002/level005/scene.txt
+share/games/colobot/levels/exercises/chapter002/level006/help/help.B.txt
+share/games/colobot/levels/exercises/chapter002/level006/help/help.C.txt
+share/games/colobot/levels/exercises/chapter002/level006/help/help.D.txt
+share/games/colobot/levels/exercises/chapter002/level006/help/help.E.txt
+share/games/colobot/levels/exercises/chapter002/level006/help/help.F.txt
+share/games/colobot/levels/exercises/chapter002/level006/help/help.P.txt
+share/games/colobot/levels/exercises/chapter002/level006/help/help.R.txt
+share/games/colobot/levels/exercises/chapter002/level006/scene.txt
+share/games/colobot/levels/exercises/chapter002/level007/help/help.B.txt
+share/games/colobot/levels/exercises/chapter002/level007/help/help.C.txt
+share/games/colobot/levels/exercises/chapter002/level007/help/help.D.txt
+share/games/colobot/levels/exercises/chapter002/level007/help/help.E.txt
+share/games/colobot/levels/exercises/chapter002/level007/help/help.F.txt
+share/games/colobot/levels/exercises/chapter002/level007/help/help.P.txt
+share/games/colobot/levels/exercises/chapter002/level007/help/help.R.txt
+share/games/colobot/levels/exercises/chapter002/level007/scene.txt
+share/games/colobot/levels/exercises/chapter003/chaptertitle.txt
+share/games/colobot/levels/exercises/chapter003/level001/help/help.B.txt
+share/games/colobot/levels/exercises/chapter003/level001/help/help.C.txt
+share/games/colobot/levels/exercises/chapter003/level001/help/help.D.txt
+share/games/colobot/levels/exercises/chapter003/level001/help/help.E.txt
+share/games/colobot/levels/exercises/chapter003/level001/help/help.F.txt
+share/games/colobot/levels/exercises/chapter003/level001/help/help.P.txt
+share/games/colobot/levels/exercises/chapter003/level001/help/help.R.txt
+share/games/colobot/levels/exercises/chapter003/level001/scene.txt
+share/games/colobot/levels/exercises/chapter003/level002/help/help.B.txt
+share/games/colobot/levels/exercises/chapter003/level002/help/help.C.txt
+share/games/colobot/levels/exercises/chapter003/level002/help/help.D.txt
+share/games/colobot/levels/exercises/chapter003/level002/help/help.E.txt
+share/games/colobot/levels/exercises/chapter003/level002/help/help.F.txt
+share/games/colobot/levels/exercises/chapter003/level002/help/help.P.txt
+share/games/colobot/levels/exercises/chapter003/level002/help/help.R.txt
+share/games/colobot/levels/exercises/chapter003/level002/scene.txt
+share/games/colobot/levels/exercises/chapter003/level003/help/help.B.txt
+share/games/colobot/levels/exercises/chapter003/level003/help/help.C.txt
+share/games/colobot/levels/exercises/chapter003/level003/help/help.D.txt
+share/games/colobot/levels/exercises/chapter003/level003/help/help.E.txt
+share/games/colobot/levels/exercises/chapter003/level003/help/help.F.txt
+share/games/colobot/levels/exercises/chapter003/level003/help/help.P.txt
+share/games/colobot/levels/exercises/chapter003/level003/help/help.R.txt
+share/games/colobot/levels/exercises/chapter003/level003/scene.txt
+share/games/colobot/levels/exercises/chapter003/level004/help/help.B.txt
+share/games/colobot/levels/exercises/chapter003/level004/help/help.C.txt
+share/games/colobot/levels/exercises/chapter003/level004/help/help.D.txt
+share/games/colobot/levels/exercises/chapter003/level004/help/help.E.txt
+share/games/colobot/levels/exercises/chapter003/level004/help/help.F.txt
+share/games/colobot/levels/exercises/chapter003/level004/help/help.P.txt
+share/games/colobot/levels/exercises/chapter003/level004/help/help.R.txt
+share/games/colobot/levels/exercises/chapter003/level004/scene.txt
+share/games/colobot/levels/exercises/chapter003/level005/help/help.B.txt
+share/games/colobot/levels/exercises/chapter003/level005/help/help.C.txt
+share/games/colobot/levels/exercises/chapter003/level005/help/help.D.txt
+share/games/colobot/levels/exercises/chapter003/level005/help/help.E.txt
+share/games/colobot/levels/exercises/chapter003/level005/help/help.F.txt
+share/games/colobot/levels/exercises/chapter003/level005/help/help.P.txt
+share/games/colobot/levels/exercises/chapter003/level005/help/help.R.txt
+share/games/colobot/levels/exercises/chapter003/level005/scene.txt
+share/games/colobot/levels/exercises/chapter003/level006/help/help.B.txt
+share/games/colobot/levels/exercises/chapter003/level006/help/help.C.txt
+share/games/colobot/levels/exercises/chapter003/level006/help/help.D.txt
+share/games/colobot/levels/exercises/chapter003/level006/help/help.E.txt
+share/games/colobot/levels/exercises/chapter003/level006/help/help.F.txt
+share/games/colobot/levels/exercises/chapter003/level006/help/help.P.txt
+share/games/colobot/levels/exercises/chapter003/level006/help/help.R.txt
+share/games/colobot/levels/exercises/chapter003/level006/scene.txt
+share/games/colobot/levels/exercises/chapter003/level007/help/help.B.txt
+share/games/colobot/levels/exercises/chapter003/level007/help/help.C.txt
+share/games/colobot/levels/exercises/chapter003/level007/help/help.D.txt
+share/games/colobot/levels/exercises/chapter003/level007/help/help.E.txt
+share/games/colobot/levels/exercises/chapter003/level007/help/help.F.txt
+share/games/colobot/levels/exercises/chapter003/level007/help/help.P.txt
+share/games/colobot/levels/exercises/chapter003/level007/help/help.R.txt
+share/games/colobot/levels/exercises/chapter003/level007/scene.txt
+share/games/colobot/levels/exercises/chapter003/level008/help/help.B.txt
+share/games/colobot/levels/exercises/chapter003/level008/help/help.C.txt
+share/games/colobot/levels/exercises/chapter003/level008/help/help.D.txt
+share/games/colobot/levels/exercises/chapter003/level008/help/help.E.txt
+share/games/colobot/levels/exercises/chapter003/level008/help/help.F.txt
+share/games/colobot/levels/exercises/chapter003/level008/help/help.P.txt
+share/games/colobot/levels/exercises/chapter003/level008/help/help.R.txt
+share/games/colobot/levels/exercises/chapter003/level008/scene.txt
+share/games/colobot/levels/exercises/chapter003/level009/help/help.B.txt
+share/games/colobot/levels/exercises/chapter003/level009/help/help.C.txt
+share/games/colobot/levels/exercises/chapter003/level009/help/help.D.txt
+share/games/colobot/levels/exercises/chapter003/level009/help/help.E.txt
+share/games/colobot/levels/exercises/chapter003/level009/help/help.F.txt
+share/games/colobot/levels/exercises/chapter003/level009/help/help.P.txt
+share/games/colobot/levels/exercises/chapter003/level009/help/help.R.txt
+share/games/colobot/levels/exercises/chapter003/level009/scene.txt
+share/games/colobot/levels/exercises/chapter004/chaptertitle.txt
+share/games/colobot/levels/exercises/chapter004/level001/help/help.B.txt
+share/games/colobot/levels/exercises/chapter004/level001/help/help.C.txt
+share/games/colobot/levels/exercises/chapter004/level001/help/help.D.txt
+share/games/colobot/levels/exercises/chapter004/level001/help/help.E.txt
+share/games/colobot/levels/exercises/chapter004/level001/help/help.F.txt
+share/games/colobot/levels/exercises/chapter004/level001/help/help.P.txt
+share/games/colobot/levels/exercises/chapter004/level001/help/help.R.txt
+share/games/colobot/levels/exercises/chapter004/level001/scene.txt
+share/games/colobot/levels/exercises/chapter004/level002/help/help.B.txt
+share/games/colobot/levels/exercises/chapter004/level002/help/help.C.txt
+share/games/colobot/levels/exercises/chapter004/level002/help/help.D.txt
+share/games/colobot/levels/exercises/chapter004/level002/help/help.E.txt
+share/games/colobot/levels/exercises/chapter004/level002/help/help.F.txt
+share/games/colobot/levels/exercises/chapter004/level002/help/help.P.txt
+share/games/colobot/levels/exercises/chapter004/level002/help/help.R.txt
+share/games/colobot/levels/exercises/chapter004/level002/scene.txt
+share/games/colobot/levels/exercises/chapter004/level003/help/help.B.txt
+share/games/colobot/levels/exercises/chapter004/level003/help/help.C.txt
+share/games/colobot/levels/exercises/chapter004/level003/help/help.D.txt
+share/games/colobot/levels/exercises/chapter004/level003/help/help.E.txt
+share/games/colobot/levels/exercises/chapter004/level003/help/help.F.txt
+share/games/colobot/levels/exercises/chapter004/level003/help/help.P.txt
+share/games/colobot/levels/exercises/chapter004/level003/help/help.R.txt
+share/games/colobot/levels/exercises/chapter004/level003/scene.txt
+share/games/colobot/levels/exercises/chapter004/level004/help/help.B.txt
+share/games/colobot/levels/exercises/chapter004/level004/help/help.C.txt
+share/games/colobot/levels/exercises/chapter004/level004/help/help.D.txt
+share/games/colobot/levels/exercises/chapter004/level004/help/help.E.txt
+share/games/colobot/levels/exercises/chapter004/level004/help/help.F.txt
+share/games/colobot/levels/exercises/chapter004/level004/help/help.P.txt
+share/games/colobot/levels/exercises/chapter004/level004/help/help.R.txt
+share/games/colobot/levels/exercises/chapter004/level004/scene.txt
+share/games/colobot/levels/exercises/chapter004/level005/help/help.B.txt
+share/games/colobot/levels/exercises/chapter004/level005/help/help.C.txt
+share/games/colobot/levels/exercises/chapter004/level005/help/help.D.txt
+share/games/colobot/levels/exercises/chapter004/level005/help/help.E.txt
+share/games/colobot/levels/exercises/chapter004/level005/help/help.F.txt
+share/games/colobot/levels/exercises/chapter004/level005/help/help.P.txt
+share/games/colobot/levels/exercises/chapter004/level005/help/help.R.txt
+share/games/colobot/levels/exercises/chapter004/level005/scene.txt
+share/games/colobot/levels/exercises/chapter005/chaptertitle.txt
+share/games/colobot/levels/exercises/chapter005/level001/help/help.B.txt
+share/games/colobot/levels/exercises/chapter005/level001/help/help.C.txt
+share/games/colobot/levels/exercises/chapter005/level001/help/help.D.txt
+share/games/colobot/levels/exercises/chapter005/level001/help/help.E.txt
+share/games/colobot/levels/exercises/chapter005/level001/help/help.F.txt
+share/games/colobot/levels/exercises/chapter005/level001/help/help.P.txt
+share/games/colobot/levels/exercises/chapter005/level001/help/help.R.txt
+share/games/colobot/levels/exercises/chapter005/level001/scene.txt
+share/games/colobot/levels/exercises/chapter005/level002/help/help.B.txt
+share/games/colobot/levels/exercises/chapter005/level002/help/help.C.txt
+share/games/colobot/levels/exercises/chapter005/level002/help/help.D.txt
+share/games/colobot/levels/exercises/chapter005/level002/help/help.E.txt
+share/games/colobot/levels/exercises/chapter005/level002/help/help.F.txt
+share/games/colobot/levels/exercises/chapter005/level002/help/help.P.txt
+share/games/colobot/levels/exercises/chapter005/level002/help/help.R.txt
+share/games/colobot/levels/exercises/chapter005/level002/scene.txt
+share/games/colobot/levels/exercises/chapter005/level003/help/help.B.txt
+share/games/colobot/levels/exercises/chapter005/level003/help/help.C.txt
+share/games/colobot/levels/exercises/chapter005/level003/help/help.D.txt
+share/games/colobot/levels/exercises/chapter005/level003/help/help.E.txt
+share/games/colobot/levels/exercises/chapter005/level003/help/help.F.txt
+share/games/colobot/levels/exercises/chapter005/level003/help/help.P.txt
+share/games/colobot/levels/exercises/chapter005/level003/help/help.R.txt
+share/games/colobot/levels/exercises/chapter005/level003/scene.txt
+share/games/colobot/levels/exercises/chapter005/level004/help/help.B.txt
+share/games/colobot/levels/exercises/chapter005/level004/help/help.C.txt
+share/games/colobot/levels/exercises/chapter005/level004/help/help.D.txt
+share/games/colobot/levels/exercises/chapter005/level004/help/help.E.txt
+share/games/colobot/levels/exercises/chapter005/level004/help/help.F.txt
+share/games/colobot/levels/exercises/chapter005/level004/help/help.P.txt
+share/games/colobot/levels/exercises/chapter005/level004/help/help.R.txt
+share/games/colobot/levels/exercises/chapter005/level004/scene.txt
+share/games/colobot/levels/exercises/chapter006/chaptertitle.txt
+share/games/colobot/levels/exercises/chapter006/level001/help/help.B.txt
+share/games/colobot/levels/exercises/chapter006/level001/help/help.C.txt
+share/games/colobot/levels/exercises/chapter006/level001/help/help.D.txt
+share/games/colobot/levels/exercises/chapter006/level001/help/help.E.txt
+share/games/colobot/levels/exercises/chapter006/level001/help/help.F.txt
+share/games/colobot/levels/exercises/chapter006/level001/help/help.P.txt
+share/games/colobot/levels/exercises/chapter006/level001/help/help.R.txt
+share/games/colobot/levels/exercises/chapter006/level001/scene.txt
+share/games/colobot/levels/exercises/chapter006/level002/help/help.B.txt
+share/games/colobot/levels/exercises/chapter006/level002/help/help.C.txt
+share/games/colobot/levels/exercises/chapter006/level002/help/help.D.txt
+share/games/colobot/levels/exercises/chapter006/level002/help/help.E.txt
+share/games/colobot/levels/exercises/chapter006/level002/help/help.F.txt
+share/games/colobot/levels/exercises/chapter006/level002/help/help.P.txt
+share/games/colobot/levels/exercises/chapter006/level002/help/help.R.txt
+share/games/colobot/levels/exercises/chapter006/level002/scene.txt
+share/games/colobot/levels/exercises/chapter006/level003/help/help.B.txt
+share/games/colobot/levels/exercises/chapter006/level003/help/help.C.txt
+share/games/colobot/levels/exercises/chapter006/level003/help/help.D.txt
+share/games/colobot/levels/exercises/chapter006/level003/help/help.E.txt
+share/games/colobot/levels/exercises/chapter006/level003/help/help.F.txt
+share/games/colobot/levels/exercises/chapter006/level003/help/help.P.txt
+share/games/colobot/levels/exercises/chapter006/level003/help/help.R.txt
+share/games/colobot/levels/exercises/chapter006/level003/scene.txt
+share/games/colobot/levels/exercises/chapter007/chaptertitle.txt
+share/games/colobot/levels/exercises/chapter007/level001/help/help.B.txt
+share/games/colobot/levels/exercises/chapter007/level001/help/help.C.txt
+share/games/colobot/levels/exercises/chapter007/level001/help/help.D.txt
+share/games/colobot/levels/exercises/chapter007/level001/help/help.E.txt
+share/games/colobot/levels/exercises/chapter007/level001/help/help.F.txt
+share/games/colobot/levels/exercises/chapter007/level001/help/help.P.txt
+share/games/colobot/levels/exercises/chapter007/level001/help/help.R.txt
+share/games/colobot/levels/exercises/chapter007/level001/scene.txt
+share/games/colobot/levels/exercises/chapter007/level002/help/help.B.txt
+share/games/colobot/levels/exercises/chapter007/level002/help/help.C.txt
+share/games/colobot/levels/exercises/chapter007/level002/help/help.D.txt
+share/games/colobot/levels/exercises/chapter007/level002/help/help.E.txt
+share/games/colobot/levels/exercises/chapter007/level002/help/help.F.txt
+share/games/colobot/levels/exercises/chapter007/level002/help/help.P.txt
+share/games/colobot/levels/exercises/chapter007/level002/help/help.R.txt
+share/games/colobot/levels/exercises/chapter007/level002/scene.txt
+share/games/colobot/levels/exercises/chapter007/level003/help/help.B.txt
+share/games/colobot/levels/exercises/chapter007/level003/help/help.C.txt
+share/games/colobot/levels/exercises/chapter007/level003/help/help.D.txt
+share/games/colobot/levels/exercises/chapter007/level003/help/help.E.txt
+share/games/colobot/levels/exercises/chapter007/level003/help/help.F.txt
+share/games/colobot/levels/exercises/chapter007/level003/help/help.P.txt
+share/games/colobot/levels/exercises/chapter007/level003/help/help.R.txt
+share/games/colobot/levels/exercises/chapter007/level003/scene.txt
+share/games/colobot/levels/freemissions/chapter001/chaptertitle.txt
+share/games/colobot/levels/freemissions/chapter001/level001/scene.txt
+share/games/colobot/levels/freemissions/chapter002/chaptertitle.txt
+share/games/colobot/levels/freemissions/chapter002/level001/scene.txt
+share/games/colobot/levels/freemissions/chapter003/chaptertitle.txt
+share/games/colobot/levels/freemissions/chapter003/level001/scene.txt
+share/games/colobot/levels/freemissions/chapter004/chaptertitle.txt
+share/games/colobot/levels/freemissions/chapter004/level001/scene.txt
+share/games/colobot/levels/freemissions/chapter005/chaptertitle.txt
+share/games/colobot/levels/freemissions/chapter005/level001/scene.txt
+share/games/colobot/levels/freemissions/chapter006/chaptertitle.txt
+share/games/colobot/levels/freemissions/chapter006/level001/scene.txt
+share/games/colobot/levels/freemissions/chapter007/chaptertitle.txt
+share/games/colobot/levels/freemissions/chapter007/level001/scene.txt
+share/games/colobot/levels/freemissions/chapter008/chaptertitle.txt
+share/games/colobot/levels/freemissions/chapter008/level001/scene.txt
+share/games/colobot/levels/freemissions/chapter009/chaptertitle.txt
+share/games/colobot/levels/freemissions/chapter009/level001/scene.txt
+share/games/colobot/levels/missions/chapter001/chaptertitle.txt
+share/games/colobot/levels/missions/chapter001/level001/help/help.B.txt
+share/games/colobot/levels/missions/chapter001/level001/help/help.C.txt
+share/games/colobot/levels/missions/chapter001/level001/help/help.D.txt
+share/games/colobot/levels/missions/chapter001/level001/help/help.E.txt
+share/games/colobot/levels/missions/chapter001/level001/help/help.F.txt
+share/games/colobot/levels/missions/chapter001/level001/help/help.P.txt
+share/games/colobot/levels/missions/chapter001/level001/help/help.R.txt
+share/games/colobot/levels/missions/chapter001/level001/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter001/level001/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter001/level001/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter001/level001/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter001/level001/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter001/level001/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter001/level001/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter001/level001/scene.txt
+share/games/colobot/levels/missions/chapter001/level002/help/help.B.txt
+share/games/colobot/levels/missions/chapter001/level002/help/help.C.txt
+share/games/colobot/levels/missions/chapter001/level002/help/help.D.txt
+share/games/colobot/levels/missions/chapter001/level002/help/help.E.txt
+share/games/colobot/levels/missions/chapter001/level002/help/help.F.txt
+share/games/colobot/levels/missions/chapter001/level002/help/help.P.txt
+share/games/colobot/levels/missions/chapter001/level002/help/help.R.txt
+share/games/colobot/levels/missions/chapter001/level002/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter001/level002/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter001/level002/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter001/level002/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter001/level002/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter001/level002/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter001/level002/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter001/level002/scene.txt
+share/games/colobot/levels/missions/chapter001/level003/help/help.B.txt
+share/games/colobot/levels/missions/chapter001/level003/help/help.C.txt
+share/games/colobot/levels/missions/chapter001/level003/help/help.D.txt
+share/games/colobot/levels/missions/chapter001/level003/help/help.E.txt
+share/games/colobot/levels/missions/chapter001/level003/help/help.F.txt
+share/games/colobot/levels/missions/chapter001/level003/help/help.P.txt
+share/games/colobot/levels/missions/chapter001/level003/help/help.R.txt
+share/games/colobot/levels/missions/chapter001/level003/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter001/level003/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter001/level003/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter001/level003/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter001/level003/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter001/level003/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter001/level003/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter001/level003/scene.txt
+share/games/colobot/levels/missions/chapter001/planet.txt
+share/games/colobot/levels/missions/chapter001/terrain.txt
+share/games/colobot/levels/missions/chapter002/chaptertitle.txt
+share/games/colobot/levels/missions/chapter002/level001/help/help.B.txt
+share/games/colobot/levels/missions/chapter002/level001/help/help.C.txt
+share/games/colobot/levels/missions/chapter002/level001/help/help.D.txt
+share/games/colobot/levels/missions/chapter002/level001/help/help.E.txt
+share/games/colobot/levels/missions/chapter002/level001/help/help.F.txt
+share/games/colobot/levels/missions/chapter002/level001/help/help.P.txt
+share/games/colobot/levels/missions/chapter002/level001/help/help.R.txt
+share/games/colobot/levels/missions/chapter002/level001/help/report.B.txt
+share/games/colobot/levels/missions/chapter002/level001/help/report.C.txt
+share/games/colobot/levels/missions/chapter002/level001/help/report.D.txt
+share/games/colobot/levels/missions/chapter002/level001/help/report.E.txt
+share/games/colobot/levels/missions/chapter002/level001/help/report.F.txt
+share/games/colobot/levels/missions/chapter002/level001/help/report.P.txt
+share/games/colobot/levels/missions/chapter002/level001/help/report.R.txt
+share/games/colobot/levels/missions/chapter002/level001/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter002/level001/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter002/level001/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter002/level001/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter002/level001/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter002/level001/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter002/level001/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter002/level001/scene.txt
+share/games/colobot/levels/missions/chapter002/level002/help/help.B.txt
+share/games/colobot/levels/missions/chapter002/level002/help/help.C.txt
+share/games/colobot/levels/missions/chapter002/level002/help/help.D.txt
+share/games/colobot/levels/missions/chapter002/level002/help/help.E.txt
+share/games/colobot/levels/missions/chapter002/level002/help/help.F.txt
+share/games/colobot/levels/missions/chapter002/level002/help/help.P.txt
+share/games/colobot/levels/missions/chapter002/level002/help/help.R.txt
+share/games/colobot/levels/missions/chapter002/level002/help/report.B.txt
+share/games/colobot/levels/missions/chapter002/level002/help/report.C.txt
+share/games/colobot/levels/missions/chapter002/level002/help/report.D.txt
+share/games/colobot/levels/missions/chapter002/level002/help/report.E.txt
+share/games/colobot/levels/missions/chapter002/level002/help/report.F.txt
+share/games/colobot/levels/missions/chapter002/level002/help/report.P.txt
+share/games/colobot/levels/missions/chapter002/level002/help/report.R.txt
+share/games/colobot/levels/missions/chapter002/level002/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter002/level002/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter002/level002/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter002/level002/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter002/level002/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter002/level002/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter002/level002/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter002/level002/scene.txt
+share/games/colobot/levels/missions/chapter002/level003/help/help.B.txt
+share/games/colobot/levels/missions/chapter002/level003/help/help.C.txt
+share/games/colobot/levels/missions/chapter002/level003/help/help.D.txt
+share/games/colobot/levels/missions/chapter002/level003/help/help.E.txt
+share/games/colobot/levels/missions/chapter002/level003/help/help.F.txt
+share/games/colobot/levels/missions/chapter002/level003/help/help.P.txt
+share/games/colobot/levels/missions/chapter002/level003/help/help.R.txt
+share/games/colobot/levels/missions/chapter002/level003/help/report.B.txt
+share/games/colobot/levels/missions/chapter002/level003/help/report.C.txt
+share/games/colobot/levels/missions/chapter002/level003/help/report.D.txt
+share/games/colobot/levels/missions/chapter002/level003/help/report.E.txt
+share/games/colobot/levels/missions/chapter002/level003/help/report.F.txt
+share/games/colobot/levels/missions/chapter002/level003/help/report.P.txt
+share/games/colobot/levels/missions/chapter002/level003/help/report.R.txt
+share/games/colobot/levels/missions/chapter002/level003/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter002/level003/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter002/level003/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter002/level003/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter002/level003/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter002/level003/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter002/level003/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter002/level003/scene.txt
+share/games/colobot/levels/missions/chapter002/level004/help/help.B.txt
+share/games/colobot/levels/missions/chapter002/level004/help/help.C.txt
+share/games/colobot/levels/missions/chapter002/level004/help/help.D.txt
+share/games/colobot/levels/missions/chapter002/level004/help/help.E.txt
+share/games/colobot/levels/missions/chapter002/level004/help/help.F.txt
+share/games/colobot/levels/missions/chapter002/level004/help/help.P.txt
+share/games/colobot/levels/missions/chapter002/level004/help/help.R.txt
+share/games/colobot/levels/missions/chapter002/level004/help/report.B.txt
+share/games/colobot/levels/missions/chapter002/level004/help/report.C.txt
+share/games/colobot/levels/missions/chapter002/level004/help/report.D.txt
+share/games/colobot/levels/missions/chapter002/level004/help/report.E.txt
+share/games/colobot/levels/missions/chapter002/level004/help/report.F.txt
+share/games/colobot/levels/missions/chapter002/level004/help/report.P.txt
+share/games/colobot/levels/missions/chapter002/level004/help/report.R.txt
+share/games/colobot/levels/missions/chapter002/level004/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter002/level004/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter002/level004/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter002/level004/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter002/level004/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter002/level004/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter002/level004/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter002/level004/scene.txt
+share/games/colobot/levels/missions/chapter002/planet.txt
+share/games/colobot/levels/missions/chapter002/terrain.txt
+share/games/colobot/levels/missions/chapter003/chaptertitle.txt
+share/games/colobot/levels/missions/chapter003/level001/help/help.B.txt
+share/games/colobot/levels/missions/chapter003/level001/help/help.C.txt
+share/games/colobot/levels/missions/chapter003/level001/help/help.D.txt
+share/games/colobot/levels/missions/chapter003/level001/help/help.E.txt
+share/games/colobot/levels/missions/chapter003/level001/help/help.F.txt
+share/games/colobot/levels/missions/chapter003/level001/help/help.P.txt
+share/games/colobot/levels/missions/chapter003/level001/help/help.R.txt
+share/games/colobot/levels/missions/chapter003/level001/help/report.B.txt
+share/games/colobot/levels/missions/chapter003/level001/help/report.C.txt
+share/games/colobot/levels/missions/chapter003/level001/help/report.D.txt
+share/games/colobot/levels/missions/chapter003/level001/help/report.E.txt
+share/games/colobot/levels/missions/chapter003/level001/help/report.F.txt
+share/games/colobot/levels/missions/chapter003/level001/help/report.P.txt
+share/games/colobot/levels/missions/chapter003/level001/help/report.R.txt
+share/games/colobot/levels/missions/chapter003/level001/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter003/level001/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter003/level001/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter003/level001/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter003/level001/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter003/level001/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter003/level001/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter003/level001/scene.txt
+share/games/colobot/levels/missions/chapter003/level002/help/help.B.txt
+share/games/colobot/levels/missions/chapter003/level002/help/help.C.txt
+share/games/colobot/levels/missions/chapter003/level002/help/help.D.txt
+share/games/colobot/levels/missions/chapter003/level002/help/help.E.txt
+share/games/colobot/levels/missions/chapter003/level002/help/help.F.txt
+share/games/colobot/levels/missions/chapter003/level002/help/help.P.txt
+share/games/colobot/levels/missions/chapter003/level002/help/help.R.txt
+share/games/colobot/levels/missions/chapter003/level002/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter003/level002/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter003/level002/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter003/level002/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter003/level002/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter003/level002/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter003/level002/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter003/level002/scene.txt
+share/games/colobot/levels/missions/chapter003/level003/help/help.B.txt
+share/games/colobot/levels/missions/chapter003/level003/help/help.C.txt
+share/games/colobot/levels/missions/chapter003/level003/help/help.D.txt
+share/games/colobot/levels/missions/chapter003/level003/help/help.E.txt
+share/games/colobot/levels/missions/chapter003/level003/help/help.F.txt
+share/games/colobot/levels/missions/chapter003/level003/help/help.P.txt
+share/games/colobot/levels/missions/chapter003/level003/help/help.R.txt
+share/games/colobot/levels/missions/chapter003/level003/help/report.B.txt
+share/games/colobot/levels/missions/chapter003/level003/help/report.C.txt
+share/games/colobot/levels/missions/chapter003/level003/help/report.D.txt
+share/games/colobot/levels/missions/chapter003/level003/help/report.E.txt
+share/games/colobot/levels/missions/chapter003/level003/help/report.F.txt
+share/games/colobot/levels/missions/chapter003/level003/help/report.P.txt
+share/games/colobot/levels/missions/chapter003/level003/help/report.R.txt
+share/games/colobot/levels/missions/chapter003/level003/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter003/level003/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter003/level003/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter003/level003/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter003/level003/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter003/level003/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter003/level003/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter003/level003/scene.txt
+share/games/colobot/levels/missions/chapter003/level004/help/help.B.txt
+share/games/colobot/levels/missions/chapter003/level004/help/help.C.txt
+share/games/colobot/levels/missions/chapter003/level004/help/help.D.txt
+share/games/colobot/levels/missions/chapter003/level004/help/help.E.txt
+share/games/colobot/levels/missions/chapter003/level004/help/help.F.txt
+share/games/colobot/levels/missions/chapter003/level004/help/help.P.txt
+share/games/colobot/levels/missions/chapter003/level004/help/help.R.txt
+share/games/colobot/levels/missions/chapter003/level004/help/report.B.txt
+share/games/colobot/levels/missions/chapter003/level004/help/report.C.txt
+share/games/colobot/levels/missions/chapter003/level004/help/report.D.txt
+share/games/colobot/levels/missions/chapter003/level004/help/report.E.txt
+share/games/colobot/levels/missions/chapter003/level004/help/report.F.txt
+share/games/colobot/levels/missions/chapter003/level004/help/report.P.txt
+share/games/colobot/levels/missions/chapter003/level004/help/report.R.txt
+share/games/colobot/levels/missions/chapter003/level004/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter003/level004/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter003/level004/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter003/level004/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter003/level004/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter003/level004/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter003/level004/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter003/level004/scene.txt
+share/games/colobot/levels/missions/chapter003/level005/help/help.B.txt
+share/games/colobot/levels/missions/chapter003/level005/help/help.C.txt
+share/games/colobot/levels/missions/chapter003/level005/help/help.D.txt
+share/games/colobot/levels/missions/chapter003/level005/help/help.E.txt
+share/games/colobot/levels/missions/chapter003/level005/help/help.F.txt
+share/games/colobot/levels/missions/chapter003/level005/help/help.P.txt
+share/games/colobot/levels/missions/chapter003/level005/help/help.R.txt
+share/games/colobot/levels/missions/chapter003/level005/help/report.B.txt
+share/games/colobot/levels/missions/chapter003/level005/help/report.C.txt
+share/games/colobot/levels/missions/chapter003/level005/help/report.D.txt
+share/games/colobot/levels/missions/chapter003/level005/help/report.E.txt
+share/games/colobot/levels/missions/chapter003/level005/help/report.F.txt
+share/games/colobot/levels/missions/chapter003/level005/help/report.P.txt
+share/games/colobot/levels/missions/chapter003/level005/help/report.R.txt
+share/games/colobot/levels/missions/chapter003/level005/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter003/level005/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter003/level005/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter003/level005/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter003/level005/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter003/level005/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter003/level005/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter003/level005/scene.txt
+share/games/colobot/levels/missions/chapter003/planet.txt
+share/games/colobot/levels/missions/chapter003/terrain.txt
+share/games/colobot/levels/missions/chapter004/chaptertitle.txt
+share/games/colobot/levels/missions/chapter004/level001/help/help.B.txt
+share/games/colobot/levels/missions/chapter004/level001/help/help.C.txt
+share/games/colobot/levels/missions/chapter004/level001/help/help.D.txt
+share/games/colobot/levels/missions/chapter004/level001/help/help.E.txt
+share/games/colobot/levels/missions/chapter004/level001/help/help.F.txt
+share/games/colobot/levels/missions/chapter004/level001/help/help.P.txt
+share/games/colobot/levels/missions/chapter004/level001/help/help.R.txt
+share/games/colobot/levels/missions/chapter004/level001/help/report.B.txt
+share/games/colobot/levels/missions/chapter004/level001/help/report.C.txt
+share/games/colobot/levels/missions/chapter004/level001/help/report.D.txt
+share/games/colobot/levels/missions/chapter004/level001/help/report.E.txt
+share/games/colobot/levels/missions/chapter004/level001/help/report.F.txt
+share/games/colobot/levels/missions/chapter004/level001/help/report.P.txt
+share/games/colobot/levels/missions/chapter004/level001/help/report.R.txt
+share/games/colobot/levels/missions/chapter004/level001/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter004/level001/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter004/level001/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter004/level001/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter004/level001/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter004/level001/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter004/level001/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter004/level001/scene.txt
+share/games/colobot/levels/missions/chapter004/level002/help/help.B.txt
+share/games/colobot/levels/missions/chapter004/level002/help/help.C.txt
+share/games/colobot/levels/missions/chapter004/level002/help/help.D.txt
+share/games/colobot/levels/missions/chapter004/level002/help/help.E.txt
+share/games/colobot/levels/missions/chapter004/level002/help/help.F.txt
+share/games/colobot/levels/missions/chapter004/level002/help/help.P.txt
+share/games/colobot/levels/missions/chapter004/level002/help/help.R.txt
+share/games/colobot/levels/missions/chapter004/level002/help/report.B.txt
+share/games/colobot/levels/missions/chapter004/level002/help/report.C.txt
+share/games/colobot/levels/missions/chapter004/level002/help/report.D.txt
+share/games/colobot/levels/missions/chapter004/level002/help/report.E.txt
+share/games/colobot/levels/missions/chapter004/level002/help/report.F.txt
+share/games/colobot/levels/missions/chapter004/level002/help/report.P.txt
+share/games/colobot/levels/missions/chapter004/level002/help/report.R.txt
+share/games/colobot/levels/missions/chapter004/level002/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter004/level002/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter004/level002/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter004/level002/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter004/level002/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter004/level002/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter004/level002/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter004/level002/scene.txt
+share/games/colobot/levels/missions/chapter004/level003/help/help.B.txt
+share/games/colobot/levels/missions/chapter004/level003/help/help.C.txt
+share/games/colobot/levels/missions/chapter004/level003/help/help.D.txt
+share/games/colobot/levels/missions/chapter004/level003/help/help.E.txt
+share/games/colobot/levels/missions/chapter004/level003/help/help.F.txt
+share/games/colobot/levels/missions/chapter004/level003/help/help.P.txt
+share/games/colobot/levels/missions/chapter004/level003/help/help.R.txt
+share/games/colobot/levels/missions/chapter004/level003/help/report.B.txt
+share/games/colobot/levels/missions/chapter004/level003/help/report.C.txt
+share/games/colobot/levels/missions/chapter004/level003/help/report.D.txt
+share/games/colobot/levels/missions/chapter004/level003/help/report.E.txt
+share/games/colobot/levels/missions/chapter004/level003/help/report.F.txt
+share/games/colobot/levels/missions/chapter004/level003/help/report.P.txt
+share/games/colobot/levels/missions/chapter004/level003/help/report.R.txt
+share/games/colobot/levels/missions/chapter004/level003/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter004/level003/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter004/level003/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter004/level003/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter004/level003/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter004/level003/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter004/level003/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter004/level003/scene.txt
+share/games/colobot/levels/missions/chapter004/level004/help/help.B.txt
+share/games/colobot/levels/missions/chapter004/level004/help/help.C.txt
+share/games/colobot/levels/missions/chapter004/level004/help/help.D.txt
+share/games/colobot/levels/missions/chapter004/level004/help/help.E.txt
+share/games/colobot/levels/missions/chapter004/level004/help/help.F.txt
+share/games/colobot/levels/missions/chapter004/level004/help/help.P.txt
+share/games/colobot/levels/missions/chapter004/level004/help/help.R.txt
+share/games/colobot/levels/missions/chapter004/level004/help/report.B.txt
+share/games/colobot/levels/missions/chapter004/level004/help/report.C.txt
+share/games/colobot/levels/missions/chapter004/level004/help/report.D.txt
+share/games/colobot/levels/missions/chapter004/level004/help/report.E.txt
+share/games/colobot/levels/missions/chapter004/level004/help/report.F.txt
+share/games/colobot/levels/missions/chapter004/level004/help/report.P.txt
+share/games/colobot/levels/missions/chapter004/level004/help/report.R.txt
+share/games/colobot/levels/missions/chapter004/level004/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter004/level004/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter004/level004/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter004/level004/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter004/level004/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter004/level004/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter004/level004/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter004/level004/scene.txt
+share/games/colobot/levels/missions/chapter004/planet.txt
+share/games/colobot/levels/missions/chapter004/terrain.txt
+share/games/colobot/levels/missions/chapter005/chaptertitle.txt
+share/games/colobot/levels/missions/chapter005/level001/help/help.B.txt
+share/games/colobot/levels/missions/chapter005/level001/help/help.C.txt
+share/games/colobot/levels/missions/chapter005/level001/help/help.D.txt
+share/games/colobot/levels/missions/chapter005/level001/help/help.E.txt
+share/games/colobot/levels/missions/chapter005/level001/help/help.F.txt
+share/games/colobot/levels/missions/chapter005/level001/help/help.P.txt
+share/games/colobot/levels/missions/chapter005/level001/help/help.R.txt
+share/games/colobot/levels/missions/chapter005/level001/help/report.B.txt
+share/games/colobot/levels/missions/chapter005/level001/help/report.C.txt
+share/games/colobot/levels/missions/chapter005/level001/help/report.D.txt
+share/games/colobot/levels/missions/chapter005/level001/help/report.E.txt
+share/games/colobot/levels/missions/chapter005/level001/help/report.F.txt
+share/games/colobot/levels/missions/chapter005/level001/help/report.P.txt
+share/games/colobot/levels/missions/chapter005/level001/help/report.R.txt
+share/games/colobot/levels/missions/chapter005/level001/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter005/level001/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter005/level001/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter005/level001/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter005/level001/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter005/level001/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter005/level001/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter005/level001/scene.txt
+share/games/colobot/levels/missions/chapter005/level002/help/help.B.txt
+share/games/colobot/levels/missions/chapter005/level002/help/help.C.txt
+share/games/colobot/levels/missions/chapter005/level002/help/help.D.txt
+share/games/colobot/levels/missions/chapter005/level002/help/help.E.txt
+share/games/colobot/levels/missions/chapter005/level002/help/help.F.txt
+share/games/colobot/levels/missions/chapter005/level002/help/help.P.txt
+share/games/colobot/levels/missions/chapter005/level002/help/help.R.txt
+share/games/colobot/levels/missions/chapter005/level002/help/report.B.txt
+share/games/colobot/levels/missions/chapter005/level002/help/report.C.txt
+share/games/colobot/levels/missions/chapter005/level002/help/report.D.txt
+share/games/colobot/levels/missions/chapter005/level002/help/report.E.txt
+share/games/colobot/levels/missions/chapter005/level002/help/report.F.txt
+share/games/colobot/levels/missions/chapter005/level002/help/report.P.txt
+share/games/colobot/levels/missions/chapter005/level002/help/report.R.txt
+share/games/colobot/levels/missions/chapter005/level002/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter005/level002/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter005/level002/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter005/level002/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter005/level002/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter005/level002/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter005/level002/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter005/level002/scene.txt
+share/games/colobot/levels/missions/chapter005/level003/help/help.B.txt
+share/games/colobot/levels/missions/chapter005/level003/help/help.C.txt
+share/games/colobot/levels/missions/chapter005/level003/help/help.D.txt
+share/games/colobot/levels/missions/chapter005/level003/help/help.E.txt
+share/games/colobot/levels/missions/chapter005/level003/help/help.F.txt
+share/games/colobot/levels/missions/chapter005/level003/help/help.P.txt
+share/games/colobot/levels/missions/chapter005/level003/help/help.R.txt
+share/games/colobot/levels/missions/chapter005/level003/help/report.B.txt
+share/games/colobot/levels/missions/chapter005/level003/help/report.C.txt
+share/games/colobot/levels/missions/chapter005/level003/help/report.D.txt
+share/games/colobot/levels/missions/chapter005/level003/help/report.E.txt
+share/games/colobot/levels/missions/chapter005/level003/help/report.F.txt
+share/games/colobot/levels/missions/chapter005/level003/help/report.P.txt
+share/games/colobot/levels/missions/chapter005/level003/help/report.R.txt
+share/games/colobot/levels/missions/chapter005/level003/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter005/level003/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter005/level003/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter005/level003/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter005/level003/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter005/level003/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter005/level003/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter005/level003/scene.txt
+share/games/colobot/levels/missions/chapter005/planet.txt
+share/games/colobot/levels/missions/chapter005/terrain.txt
+share/games/colobot/levels/missions/chapter006/chaptertitle.txt
+share/games/colobot/levels/missions/chapter006/level001/help/help.B.txt
+share/games/colobot/levels/missions/chapter006/level001/help/help.C.txt
+share/games/colobot/levels/missions/chapter006/level001/help/help.D.txt
+share/games/colobot/levels/missions/chapter006/level001/help/help.E.txt
+share/games/colobot/levels/missions/chapter006/level001/help/help.F.txt
+share/games/colobot/levels/missions/chapter006/level001/help/help.P.txt
+share/games/colobot/levels/missions/chapter006/level001/help/help.R.txt
+share/games/colobot/levels/missions/chapter006/level001/help/report.B.txt
+share/games/colobot/levels/missions/chapter006/level001/help/report.C.txt
+share/games/colobot/levels/missions/chapter006/level001/help/report.D.txt
+share/games/colobot/levels/missions/chapter006/level001/help/report.E.txt
+share/games/colobot/levels/missions/chapter006/level001/help/report.F.txt
+share/games/colobot/levels/missions/chapter006/level001/help/report.P.txt
+share/games/colobot/levels/missions/chapter006/level001/help/report.R.txt
+share/games/colobot/levels/missions/chapter006/level001/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter006/level001/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter006/level001/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter006/level001/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter006/level001/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter006/level001/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter006/level001/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter006/level001/scene.txt
+share/games/colobot/levels/missions/chapter006/level002/help/help.B.txt
+share/games/colobot/levels/missions/chapter006/level002/help/help.C.txt
+share/games/colobot/levels/missions/chapter006/level002/help/help.D.txt
+share/games/colobot/levels/missions/chapter006/level002/help/help.E.txt
+share/games/colobot/levels/missions/chapter006/level002/help/help.F.txt
+share/games/colobot/levels/missions/chapter006/level002/help/help.P.txt
+share/games/colobot/levels/missions/chapter006/level002/help/help.R.txt
+share/games/colobot/levels/missions/chapter006/level002/help/report.B.txt
+share/games/colobot/levels/missions/chapter006/level002/help/report.C.txt
+share/games/colobot/levels/missions/chapter006/level002/help/report.D.txt
+share/games/colobot/levels/missions/chapter006/level002/help/report.E.txt
+share/games/colobot/levels/missions/chapter006/level002/help/report.F.txt
+share/games/colobot/levels/missions/chapter006/level002/help/report.P.txt
+share/games/colobot/levels/missions/chapter006/level002/help/report.R.txt
+share/games/colobot/levels/missions/chapter006/level002/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter006/level002/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter006/level002/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter006/level002/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter006/level002/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter006/level002/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter006/level002/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter006/level002/scene.txt
+share/games/colobot/levels/missions/chapter006/level003/help/help.B.txt
+share/games/colobot/levels/missions/chapter006/level003/help/help.C.txt
+share/games/colobot/levels/missions/chapter006/level003/help/help.D.txt
+share/games/colobot/levels/missions/chapter006/level003/help/help.E.txt
+share/games/colobot/levels/missions/chapter006/level003/help/help.F.txt
+share/games/colobot/levels/missions/chapter006/level003/help/help.P.txt
+share/games/colobot/levels/missions/chapter006/level003/help/help.R.txt
+share/games/colobot/levels/missions/chapter006/level003/help/report.B.txt
+share/games/colobot/levels/missions/chapter006/level003/help/report.C.txt
+share/games/colobot/levels/missions/chapter006/level003/help/report.D.txt
+share/games/colobot/levels/missions/chapter006/level003/help/report.E.txt
+share/games/colobot/levels/missions/chapter006/level003/help/report.F.txt
+share/games/colobot/levels/missions/chapter006/level003/help/report.P.txt
+share/games/colobot/levels/missions/chapter006/level003/help/report.R.txt
+share/games/colobot/levels/missions/chapter006/level003/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter006/level003/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter006/level003/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter006/level003/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter006/level003/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter006/level003/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter006/level003/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter006/level003/scene.txt
+share/games/colobot/levels/missions/chapter006/level004/help/help.B.txt
+share/games/colobot/levels/missions/chapter006/level004/help/help.C.txt
+share/games/colobot/levels/missions/chapter006/level004/help/help.D.txt
+share/games/colobot/levels/missions/chapter006/level004/help/help.E.txt
+share/games/colobot/levels/missions/chapter006/level004/help/help.F.txt
+share/games/colobot/levels/missions/chapter006/level004/help/help.P.txt
+share/games/colobot/levels/missions/chapter006/level004/help/help.R.txt
+share/games/colobot/levels/missions/chapter006/level004/help/report.B.txt
+share/games/colobot/levels/missions/chapter006/level004/help/report.C.txt
+share/games/colobot/levels/missions/chapter006/level004/help/report.D.txt
+share/games/colobot/levels/missions/chapter006/level004/help/report.E.txt
+share/games/colobot/levels/missions/chapter006/level004/help/report.F.txt
+share/games/colobot/levels/missions/chapter006/level004/help/report.P.txt
+share/games/colobot/levels/missions/chapter006/level004/help/report.R.txt
+share/games/colobot/levels/missions/chapter006/level004/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter006/level004/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter006/level004/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter006/level004/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter006/level004/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter006/level004/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter006/level004/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter006/level004/scene.txt
+share/games/colobot/levels/missions/chapter006/level005/help/help.B.txt
+share/games/colobot/levels/missions/chapter006/level005/help/help.C.txt
+share/games/colobot/levels/missions/chapter006/level005/help/help.D.txt
+share/games/colobot/levels/missions/chapter006/level005/help/help.E.txt
+share/games/colobot/levels/missions/chapter006/level005/help/help.F.txt
+share/games/colobot/levels/missions/chapter006/level005/help/help.P.txt
+share/games/colobot/levels/missions/chapter006/level005/help/help.R.txt
+share/games/colobot/levels/missions/chapter006/level005/help/report.B.txt
+share/games/colobot/levels/missions/chapter006/level005/help/report.C.txt
+share/games/colobot/levels/missions/chapter006/level005/help/report.D.txt
+share/games/colobot/levels/missions/chapter006/level005/help/report.E.txt
+share/games/colobot/levels/missions/chapter006/level005/help/report.F.txt
+share/games/colobot/levels/missions/chapter006/level005/help/report.P.txt
+share/games/colobot/levels/missions/chapter006/level005/help/report.R.txt
+share/games/colobot/levels/missions/chapter006/level005/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter006/level005/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter006/level005/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter006/level005/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter006/level005/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter006/level005/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter006/level005/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter006/level005/scene.txt
+share/games/colobot/levels/missions/chapter006/level006/help/help.B.txt
+share/games/colobot/levels/missions/chapter006/level006/help/help.C.txt
+share/games/colobot/levels/missions/chapter006/level006/help/help.D.txt
+share/games/colobot/levels/missions/chapter006/level006/help/help.E.txt
+share/games/colobot/levels/missions/chapter006/level006/help/help.F.txt
+share/games/colobot/levels/missions/chapter006/level006/help/help.P.txt
+share/games/colobot/levels/missions/chapter006/level006/help/help.R.txt
+share/games/colobot/levels/missions/chapter006/level006/help/report.B.txt
+share/games/colobot/levels/missions/chapter006/level006/help/report.C.txt
+share/games/colobot/levels/missions/chapter006/level006/help/report.D.txt
+share/games/colobot/levels/missions/chapter006/level006/help/report.E.txt
+share/games/colobot/levels/missions/chapter006/level006/help/report.F.txt
+share/games/colobot/levels/missions/chapter006/level006/help/report.P.txt
+share/games/colobot/levels/missions/chapter006/level006/help/report.R.txt
+share/games/colobot/levels/missions/chapter006/level006/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter006/level006/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter006/level006/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter006/level006/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter006/level006/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter006/level006/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter006/level006/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter006/level006/scene.txt
+share/games/colobot/levels/missions/chapter006/planet.txt
+share/games/colobot/levels/missions/chapter006/terrain.txt
+share/games/colobot/levels/missions/chapter007/chaptertitle.txt
+share/games/colobot/levels/missions/chapter007/level001/help/help.B.txt
+share/games/colobot/levels/missions/chapter007/level001/help/help.C.txt
+share/games/colobot/levels/missions/chapter007/level001/help/help.D.txt
+share/games/colobot/levels/missions/chapter007/level001/help/help.E.txt
+share/games/colobot/levels/missions/chapter007/level001/help/help.F.txt
+share/games/colobot/levels/missions/chapter007/level001/help/help.P.txt
+share/games/colobot/levels/missions/chapter007/level001/help/help.R.txt
+share/games/colobot/levels/missions/chapter007/level001/help/report.B.txt
+share/games/colobot/levels/missions/chapter007/level001/help/report.C.txt
+share/games/colobot/levels/missions/chapter007/level001/help/report.D.txt
+share/games/colobot/levels/missions/chapter007/level001/help/report.E.txt
+share/games/colobot/levels/missions/chapter007/level001/help/report.F.txt
+share/games/colobot/levels/missions/chapter007/level001/help/report.P.txt
+share/games/colobot/levels/missions/chapter007/level001/help/report.R.txt
+share/games/colobot/levels/missions/chapter007/level001/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter007/level001/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter007/level001/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter007/level001/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter007/level001/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter007/level001/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter007/level001/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter007/level001/scene.txt
+share/games/colobot/levels/missions/chapter007/level002/help/help.B.txt
+share/games/colobot/levels/missions/chapter007/level002/help/help.C.txt
+share/games/colobot/levels/missions/chapter007/level002/help/help.D.txt
+share/games/colobot/levels/missions/chapter007/level002/help/help.E.txt
+share/games/colobot/levels/missions/chapter007/level002/help/help.F.txt
+share/games/colobot/levels/missions/chapter007/level002/help/help.P.txt
+share/games/colobot/levels/missions/chapter007/level002/help/help.R.txt
+share/games/colobot/levels/missions/chapter007/level002/help/report.B.txt
+share/games/colobot/levels/missions/chapter007/level002/help/report.C.txt
+share/games/colobot/levels/missions/chapter007/level002/help/report.D.txt
+share/games/colobot/levels/missions/chapter007/level002/help/report.E.txt
+share/games/colobot/levels/missions/chapter007/level002/help/report.F.txt
+share/games/colobot/levels/missions/chapter007/level002/help/report.P.txt
+share/games/colobot/levels/missions/chapter007/level002/help/report.R.txt
+share/games/colobot/levels/missions/chapter007/level002/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter007/level002/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter007/level002/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter007/level002/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter007/level002/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter007/level002/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter007/level002/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter007/level002/scene.txt
+share/games/colobot/levels/missions/chapter007/level003/help/help.B.txt
+share/games/colobot/levels/missions/chapter007/level003/help/help.C.txt
+share/games/colobot/levels/missions/chapter007/level003/help/help.D.txt
+share/games/colobot/levels/missions/chapter007/level003/help/help.E.txt
+share/games/colobot/levels/missions/chapter007/level003/help/help.F.txt
+share/games/colobot/levels/missions/chapter007/level003/help/help.P.txt
+share/games/colobot/levels/missions/chapter007/level003/help/help.R.txt
+share/games/colobot/levels/missions/chapter007/level003/help/report.B.txt
+share/games/colobot/levels/missions/chapter007/level003/help/report.C.txt
+share/games/colobot/levels/missions/chapter007/level003/help/report.D.txt
+share/games/colobot/levels/missions/chapter007/level003/help/report.E.txt
+share/games/colobot/levels/missions/chapter007/level003/help/report.F.txt
+share/games/colobot/levels/missions/chapter007/level003/help/report.P.txt
+share/games/colobot/levels/missions/chapter007/level003/help/report.R.txt
+share/games/colobot/levels/missions/chapter007/level003/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter007/level003/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter007/level003/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter007/level003/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter007/level003/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter007/level003/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter007/level003/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter007/level003/scene.txt
+share/games/colobot/levels/missions/chapter007/level004/help/help.B.txt
+share/games/colobot/levels/missions/chapter007/level004/help/help.C.txt
+share/games/colobot/levels/missions/chapter007/level004/help/help.D.txt
+share/games/colobot/levels/missions/chapter007/level004/help/help.E.txt
+share/games/colobot/levels/missions/chapter007/level004/help/help.F.txt
+share/games/colobot/levels/missions/chapter007/level004/help/help.P.txt
+share/games/colobot/levels/missions/chapter007/level004/help/help.R.txt
+share/games/colobot/levels/missions/chapter007/level004/help/report.B.txt
+share/games/colobot/levels/missions/chapter007/level004/help/report.C.txt
+share/games/colobot/levels/missions/chapter007/level004/help/report.D.txt
+share/games/colobot/levels/missions/chapter007/level004/help/report.E.txt
+share/games/colobot/levels/missions/chapter007/level004/help/report.F.txt
+share/games/colobot/levels/missions/chapter007/level004/help/report.P.txt
+share/games/colobot/levels/missions/chapter007/level004/help/report.R.txt
+share/games/colobot/levels/missions/chapter007/level004/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter007/level004/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter007/level004/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter007/level004/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter007/level004/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter007/level004/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter007/level004/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter007/level004/scene.txt
+share/games/colobot/levels/missions/chapter007/level005/help/help.B.txt
+share/games/colobot/levels/missions/chapter007/level005/help/help.C.txt
+share/games/colobot/levels/missions/chapter007/level005/help/help.D.txt
+share/games/colobot/levels/missions/chapter007/level005/help/help.E.txt
+share/games/colobot/levels/missions/chapter007/level005/help/help.F.txt
+share/games/colobot/levels/missions/chapter007/level005/help/help.P.txt
+share/games/colobot/levels/missions/chapter007/level005/help/help.R.txt
+share/games/colobot/levels/missions/chapter007/level005/help/report.B.txt
+share/games/colobot/levels/missions/chapter007/level005/help/report.C.txt
+share/games/colobot/levels/missions/chapter007/level005/help/report.D.txt
+share/games/colobot/levels/missions/chapter007/level005/help/report.E.txt
+share/games/colobot/levels/missions/chapter007/level005/help/report.F.txt
+share/games/colobot/levels/missions/chapter007/level005/help/report.P.txt
+share/games/colobot/levels/missions/chapter007/level005/help/report.R.txt
+share/games/colobot/levels/missions/chapter007/level005/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter007/level005/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter007/level005/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter007/level005/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter007/level005/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter007/level005/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter007/level005/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter007/level005/scene.txt
+share/games/colobot/levels/missions/chapter007/planet.txt
+share/games/colobot/levels/missions/chapter007/terrain.txt
+share/games/colobot/levels/missions/chapter008/chaptertitle.txt
+share/games/colobot/levels/missions/chapter008/level001/help/help.B.txt
+share/games/colobot/levels/missions/chapter008/level001/help/help.C.txt
+share/games/colobot/levels/missions/chapter008/level001/help/help.D.txt
+share/games/colobot/levels/missions/chapter008/level001/help/help.E.txt
+share/games/colobot/levels/missions/chapter008/level001/help/help.F.txt
+share/games/colobot/levels/missions/chapter008/level001/help/help.P.txt
+share/games/colobot/levels/missions/chapter008/level001/help/help.R.txt
+share/games/colobot/levels/missions/chapter008/level001/help/report.B.txt
+share/games/colobot/levels/missions/chapter008/level001/help/report.C.txt
+share/games/colobot/levels/missions/chapter008/level001/help/report.D.txt
+share/games/colobot/levels/missions/chapter008/level001/help/report.E.txt
+share/games/colobot/levels/missions/chapter008/level001/help/report.F.txt
+share/games/colobot/levels/missions/chapter008/level001/help/report.P.txt
+share/games/colobot/levels/missions/chapter008/level001/help/report.R.txt
+share/games/colobot/levels/missions/chapter008/level001/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter008/level001/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter008/level001/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter008/level001/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter008/level001/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter008/level001/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter008/level001/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter008/level001/scene.txt
+share/games/colobot/levels/missions/chapter008/level002/help/help.B.txt
+share/games/colobot/levels/missions/chapter008/level002/help/help.C.txt
+share/games/colobot/levels/missions/chapter008/level002/help/help.D.txt
+share/games/colobot/levels/missions/chapter008/level002/help/help.E.txt
+share/games/colobot/levels/missions/chapter008/level002/help/help.F.txt
+share/games/colobot/levels/missions/chapter008/level002/help/help.P.txt
+share/games/colobot/levels/missions/chapter008/level002/help/help.R.txt
+share/games/colobot/levels/missions/chapter008/level002/help/report.B.txt
+share/games/colobot/levels/missions/chapter008/level002/help/report.C.txt
+share/games/colobot/levels/missions/chapter008/level002/help/report.D.txt
+share/games/colobot/levels/missions/chapter008/level002/help/report.E.txt
+share/games/colobot/levels/missions/chapter008/level002/help/report.F.txt
+share/games/colobot/levels/missions/chapter008/level002/help/report.P.txt
+share/games/colobot/levels/missions/chapter008/level002/help/report.R.txt
+share/games/colobot/levels/missions/chapter008/level002/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter008/level002/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter008/level002/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter008/level002/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter008/level002/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter008/level002/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter008/level002/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter008/level002/scene.txt
+share/games/colobot/levels/missions/chapter008/planet.txt
+share/games/colobot/levels/missions/chapter008/terrain.txt
+share/games/colobot/levels/missions/chapter009/chaptertitle.txt
+share/games/colobot/levels/missions/chapter009/level001/help/help.B.txt
+share/games/colobot/levels/missions/chapter009/level001/help/help.C.txt
+share/games/colobot/levels/missions/chapter009/level001/help/help.D.txt
+share/games/colobot/levels/missions/chapter009/level001/help/help.E.txt
+share/games/colobot/levels/missions/chapter009/level001/help/help.F.txt
+share/games/colobot/levels/missions/chapter009/level001/help/help.P.txt
+share/games/colobot/levels/missions/chapter009/level001/help/help.R.txt
+share/games/colobot/levels/missions/chapter009/level001/help/report.B.txt
+share/games/colobot/levels/missions/chapter009/level001/help/report.C.txt
+share/games/colobot/levels/missions/chapter009/level001/help/report.D.txt
+share/games/colobot/levels/missions/chapter009/level001/help/report.E.txt
+share/games/colobot/levels/missions/chapter009/level001/help/report.F.txt
+share/games/colobot/levels/missions/chapter009/level001/help/report.P.txt
+share/games/colobot/levels/missions/chapter009/level001/help/report.R.txt
+share/games/colobot/levels/missions/chapter009/level001/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter009/level001/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter009/level001/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter009/level001/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter009/level001/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter009/level001/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter009/level001/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter009/level001/scene.txt
+share/games/colobot/levels/missions/chapter009/level002/help/help.B.txt
+share/games/colobot/levels/missions/chapter009/level002/help/help.C.txt
+share/games/colobot/levels/missions/chapter009/level002/help/help.D.txt
+share/games/colobot/levels/missions/chapter009/level002/help/help.E.txt
+share/games/colobot/levels/missions/chapter009/level002/help/help.F.txt
+share/games/colobot/levels/missions/chapter009/level002/help/help.P.txt
+share/games/colobot/levels/missions/chapter009/level002/help/help.R.txt
+share/games/colobot/levels/missions/chapter009/level002/help/report.B.txt
+share/games/colobot/levels/missions/chapter009/level002/help/report.C.txt
+share/games/colobot/levels/missions/chapter009/level002/help/report.D.txt
+share/games/colobot/levels/missions/chapter009/level002/help/report.E.txt
+share/games/colobot/levels/missions/chapter009/level002/help/report.F.txt
+share/games/colobot/levels/missions/chapter009/level002/help/report.P.txt
+share/games/colobot/levels/missions/chapter009/level002/help/report.R.txt
+share/games/colobot/levels/missions/chapter009/level002/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter009/level002/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter009/level002/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter009/level002/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter009/level002/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter009/level002/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter009/level002/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter009/level002/scene.txt
+share/games/colobot/levels/missions/chapter009/level003/help/help.B.txt
+share/games/colobot/levels/missions/chapter009/level003/help/help.C.txt
+share/games/colobot/levels/missions/chapter009/level003/help/help.D.txt
+share/games/colobot/levels/missions/chapter009/level003/help/help.E.txt
+share/games/colobot/levels/missions/chapter009/level003/help/help.F.txt
+share/games/colobot/levels/missions/chapter009/level003/help/help.P.txt
+share/games/colobot/levels/missions/chapter009/level003/help/help.R.txt
+share/games/colobot/levels/missions/chapter009/level003/help/report.B.txt
+share/games/colobot/levels/missions/chapter009/level003/help/report.C.txt
+share/games/colobot/levels/missions/chapter009/level003/help/report.D.txt
+share/games/colobot/levels/missions/chapter009/level003/help/report.E.txt
+share/games/colobot/levels/missions/chapter009/level003/help/report.F.txt
+share/games/colobot/levels/missions/chapter009/level003/help/report.P.txt
+share/games/colobot/levels/missions/chapter009/level003/help/report.R.txt
+share/games/colobot/levels/missions/chapter009/level003/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter009/level003/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter009/level003/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter009/level003/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter009/level003/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter009/level003/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter009/level003/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter009/level003/scene.txt
+share/games/colobot/levels/missions/chapter009/level004/help/help.B.txt
+share/games/colobot/levels/missions/chapter009/level004/help/help.C.txt
+share/games/colobot/levels/missions/chapter009/level004/help/help.D.txt
+share/games/colobot/levels/missions/chapter009/level004/help/help.E.txt
+share/games/colobot/levels/missions/chapter009/level004/help/help.F.txt
+share/games/colobot/levels/missions/chapter009/level004/help/help.P.txt
+share/games/colobot/levels/missions/chapter009/level004/help/help.R.txt
+share/games/colobot/levels/missions/chapter009/level004/help/report.B.txt
+share/games/colobot/levels/missions/chapter009/level004/help/report.C.txt
+share/games/colobot/levels/missions/chapter009/level004/help/report.D.txt
+share/games/colobot/levels/missions/chapter009/level004/help/report.E.txt
+share/games/colobot/levels/missions/chapter009/level004/help/report.F.txt
+share/games/colobot/levels/missions/chapter009/level004/help/report.P.txt
+share/games/colobot/levels/missions/chapter009/level004/help/report.R.txt
+share/games/colobot/levels/missions/chapter009/level004/help/soluce.B.txt
+share/games/colobot/levels/missions/chapter009/level004/help/soluce.C.txt
+share/games/colobot/levels/missions/chapter009/level004/help/soluce.D.txt
+share/games/colobot/levels/missions/chapter009/level004/help/soluce.E.txt
+share/games/colobot/levels/missions/chapter009/level004/help/soluce.F.txt
+share/games/colobot/levels/missions/chapter009/level004/help/soluce.P.txt
+share/games/colobot/levels/missions/chapter009/level004/help/soluce.R.txt
+share/games/colobot/levels/missions/chapter009/level004/scene.txt
+share/games/colobot/levels/missions/chapter009/planet.txt
+share/games/colobot/levels/missions/chapter009/terrain.txt
+share/games/colobot/levels/other/lost000.txt
+share/games/colobot/levels/other/perso.txt
+share/games/colobot/levels/other/win000.txt
+share/games/colobot/levels/other/win001.txt
+share/games/colobot/levels/other/win002.txt
+share/games/colobot/levels/other/win003.txt
+share/games/colobot/levels/other/win004.txt
+share/games/colobot/levels/other/win101.txt
+share/games/colobot/levels/other/win102.txt
+share/games/colobot/levels/other/win201.txt
+share/games/colobot/levels/other/win202.txt
+share/games/colobot/levels/other/win203.txt
+share/games/colobot/levels/other/win604.txt
+share/games/colobot/levels/other/win605.txt
+share/games/colobot/levels/other/win704.txt
+share/games/colobot/levels/other/win904.txt
+share/games/colobot/models/ant1.mod
+share/games/colobot/models/ant2.mod
+share/games/colobot/models/ant3.mod
+share/games/colobot/models/ant4.mod
+share/games/colobot/models/ant5.mod
+share/games/colobot/models/ant6.mod
+share/games/colobot/models/apolloa.mod
+share/games/colobot/models/apollof.mod
+share/games/colobot/models/apolloj1.mod
+share/games/colobot/models/apolloj2.mod
+share/games/colobot/models/apolloj3.mod
+share/games/colobot/models/apolloj4.mod
+share/games/colobot/models/apolloj5.mod
+share/games/colobot/models/apolloj6.mod
+share/games/colobot/models/apollol1.mod
+share/games/colobot/models/apollol2.mod
+share/games/colobot/models/apollol3.mod
+share/games/colobot/models/apollom.mod
+share/games/colobot/models/atomic.mod
+share/games/colobot/models/bag.mod
+share/games/colobot/models/barricade0.mod
+share/games/colobot/models/barricade1.mod
+share/games/colobot/models/barrier0.mod
+share/games/colobot/models/barrier1.mod
+share/games/colobot/models/barrier2.mod
+share/games/colobot/models/barrier3.mod
+share/games/colobot/models/base1.mod
+share/games/colobot/models/base2.mod
+share/games/colobot/models/base3.mod
+share/games/colobot/models/base4.mod
+share/games/colobot/models/bbox.mod
+share/games/colobot/models/bee1.mod
+share/games/colobot/models/bee2.mod
+share/games/colobot/models/bee3.mod
+share/games/colobot/models/bee7.mod
+share/games/colobot/models/bomb.mod
+share/games/colobot/models/bullet.mod
+share/games/colobot/models/canon.mod
+share/games/colobot/models/canoni1.mod
+share/games/colobot/models/canoni2.mod
+share/games/colobot/models/convert1.mod
+share/games/colobot/models/convert2.mod
+share/games/colobot/models/convert3.mod
+share/games/colobot/models/courge1.mod
+share/games/colobot/models/courge2.mod
+share/games/colobot/models/cross1.mod
+share/games/colobot/models/cross2.mod
+share/games/colobot/models/cross3.mod
+share/games/colobot/models/crossa.mod
+share/games/colobot/models/crossb.mod
+share/games/colobot/models/crossc.mod
+share/games/colobot/models/crossd.mod
+share/games/colobot/models/derrick1.mod
+share/games/colobot/models/derrick2.mod
+share/games/colobot/models/destroy1.mod
+share/games/colobot/models/destroy2.mod
+share/games/colobot/models/drawer1.mod
+share/games/colobot/models/drawer10.mod
+share/games/colobot/models/drawer11.mod
+share/games/colobot/models/drawer12.mod
+share/games/colobot/models/drawer13.mod
+share/games/colobot/models/drawer14.mod
+share/games/colobot/models/drawer15.mod
+share/games/colobot/models/drawer16.mod
+share/games/colobot/models/drawer17.mod
+share/games/colobot/models/drawer2.mod
+share/games/colobot/models/drawer3.mod
+share/games/colobot/models/drawer4.mod
+share/games/colobot/models/drawer5.mod
+share/games/colobot/models/egg.mod
+share/games/colobot/models/end.mod
+share/games/colobot/models/energy.mod
+share/games/colobot/models/factory1.mod
+share/games/colobot/models/factory2.mod
+share/games/colobot/models/flag1.mod
+share/games/colobot/models/flag1b.mod
+share/games/colobot/models/flag1g.mod
+share/games/colobot/models/flag1r.mod
+share/games/colobot/models/flag1v.mod
+share/games/colobot/models/flag1y.mod
+share/games/colobot/models/flag2b.mod
+share/games/colobot/models/flag2g.mod
+share/games/colobot/models/flag2r.mod
+share/games/colobot/models/flag2v.mod
+share/games/colobot/models/flag2y.mod
+share/games/colobot/models/home1.mod
+share/games/colobot/models/human1c.mod
+share/games/colobot/models/human1h.mod
+share/games/colobot/models/human1v.mod
+share/games/colobot/models/human2c1.mod
+share/games/colobot/models/human2c2.mod
+share/games/colobot/models/human2c3.mod
+share/games/colobot/models/human2c4.mod
+share/games/colobot/models/human2g1.mod
+share/games/colobot/models/human2g2.mod
+share/games/colobot/models/human2g3.mod
+share/games/colobot/models/human2g4.mod
+share/games/colobot/models/human2g5.mod
+share/games/colobot/models/human2h1.mod
+share/games/colobot/models/human2h2.mod
+share/games/colobot/models/human2h3.mod
+share/games/colobot/models/human2h4.mod
+share/games/colobot/models/human2t.mod
+share/games/colobot/models/human3.mod
+share/games/colobot/models/human4l.mod
+share/games/colobot/models/human4r.mod
+share/games/colobot/models/human5.mod
+share/games/colobot/models/human6.mod
+share/games/colobot/models/human7.mod
+share/games/colobot/models/human8.mod
+share/games/colobot/models/human9.mod
+share/games/colobot/models/huston1.mod
+share/games/colobot/models/huston2.mod
+share/games/colobot/models/huston3.mod
+share/games/colobot/models/info1.mod
+share/games/colobot/models/info2.mod
+share/games/colobot/models/info3.mod
+share/games/colobot/models/keya.mod
+share/games/colobot/models/keyb.mod
+share/games/colobot/models/keyc.mod
+share/games/colobot/models/keyd.mod
+share/games/colobot/models/labo1.mod
+share/games/colobot/models/labo2.mod
+share/games/colobot/models/labo3.mod
+share/games/colobot/models/labo4.mod
+share/games/colobot/models/lem1f.mod
+share/games/colobot/models/lem1i.mod
+share/games/colobot/models/lem1t.mod
+share/games/colobot/models/lem1w.mod
+share/games/colobot/models/lem1wt.mod
+share/games/colobot/models/lem2.mod
+share/games/colobot/models/lem2f.mod
+share/games/colobot/models/lem2t.mod
+share/games/colobot/models/lem2w.mod
+share/games/colobot/models/lem3.mod
+share/games/colobot/models/lem3t.mod
+share/games/colobot/models/lem4.mod
+share/games/colobot/models/lem4s.mod
+share/games/colobot/models/lem5.mod
+share/games/colobot/models/lem6.mod
+share/games/colobot/models/metal.mod
+share/games/colobot/models/mother1.mod
+share/games/colobot/models/mother2.mod
+share/games/colobot/models/mother3.mod
+share/games/colobot/models/mother4.mod
+share/games/colobot/models/mother5.mod
+share/games/colobot/models/mother6.mod
+share/games/colobot/models/mother7.mod
+share/games/colobot/models/mush1.mod
+share/games/colobot/models/mush2.mod
+share/games/colobot/models/nest.mod
+share/games/colobot/models/neutron.mod
+share/games/colobot/models/nuclear1.mod
+share/games/colobot/models/nuclear2.mod
+share/games/colobot/models/para.mod
+share/games/colobot/models/plant0.mod
+share/games/colobot/models/plant1.mod
+share/games/colobot/models/plant10.mod
+share/games/colobot/models/plant11.mod
+share/games/colobot/models/plant12.mod
+share/games/colobot/models/plant13.mod
+share/games/colobot/models/plant14.mod
+share/games/colobot/models/plant15.mod
+share/games/colobot/models/plant16.mod
+share/games/colobot/models/plant17.mod
+share/games/colobot/models/plant18.mod
+share/games/colobot/models/plant19.mod
+share/games/colobot/models/plant2.mod
+share/games/colobot/models/plant3.mod
+share/games/colobot/models/plant4.mod
+share/games/colobot/models/plant5.mod
+share/games/colobot/models/plant6.mod
+share/games/colobot/models/plant7.mod
+share/games/colobot/models/plant8.mod
+share/games/colobot/models/plant9.mod
+share/games/colobot/models/portico1.mod
+share/games/colobot/models/portico2.mod
+share/games/colobot/models/portico3.mod
+share/games/colobot/models/portico4.mod
+share/games/colobot/models/portico5.mod
+share/games/colobot/models/portico6.mod
+share/games/colobot/models/portico7.mod
+share/games/colobot/models/power.mod
+share/games/colobot/models/quartz0.mod
+share/games/colobot/models/quartz1.mod
+share/games/colobot/models/quartz2.mod
+share/games/colobot/models/quartz3.mod
+share/games/colobot/models/radar1.mod
+share/games/colobot/models/radar2.mod
+share/games/colobot/models/radar3.mod
+share/games/colobot/models/radar4.mod
+share/games/colobot/models/recover1.mod
+share/games/colobot/models/recover2.mod
+share/games/colobot/models/recover3.mod
+share/games/colobot/models/repair1.mod
+share/games/colobot/models/repair2.mod
+share/games/colobot/models/roller1.mod
+share/games/colobot/models/roller2.mod
+share/games/colobot/models/roller2c.mod
+share/games/colobot/models/roller2s.mod
+share/games/colobot/models/roller2t.mod
+share/games/colobot/models/roller3.mod
+share/games/colobot/models/roller3c.mod
+share/games/colobot/models/roller3p.mod
+share/games/colobot/models/roller3s.mod
+share/games/colobot/models/roller3t.mod
+share/games/colobot/models/roller4s.mod
+share/games/colobot/models/root0.mod
+share/games/colobot/models/root1.mod
+share/games/colobot/models/root2.mod
+share/games/colobot/models/root3.mod
+share/games/colobot/models/root4.mod
+share/games/colobot/models/root5.mod
+share/games/colobot/models/ruin1.mod
+share/games/colobot/models/ruin10.mod
+share/games/colobot/models/ruin1w.mod
+share/games/colobot/models/ruin2.mod
+share/games/colobot/models/ruin2c.mod
+share/games/colobot/models/ruin3.mod
+share/games/colobot/models/ruin4.mod
+share/games/colobot/models/ruin5.mod
+share/games/colobot/models/ruin6.mod
+share/games/colobot/models/ruin7.mod
+share/games/colobot/models/ruin8.mod
+share/games/colobot/models/ruin9.mod
+share/games/colobot/models/safe1.mod
+share/games/colobot/models/safe2.mod
+share/games/colobot/models/safe3.mod
+share/games/colobot/models/search1.mod
+share/games/colobot/models/search2.mod
+share/games/colobot/models/search3.mod
+share/games/colobot/models/show.mod
+share/games/colobot/models/spider1.mod
+share/games/colobot/models/spider2.mod
+share/games/colobot/models/spider3.mod
+share/games/colobot/models/spider4.mod
+share/games/colobot/models/spider5.mod
+share/games/colobot/models/spider6.mod
+share/games/colobot/models/spider7.mod
+share/games/colobot/models/start.mod
+share/games/colobot/models/station.mod
+share/games/colobot/models/stone.mod
+share/games/colobot/models/subm1.mod
+share/games/colobot/models/subm2.mod
+share/games/colobot/models/subm3.mod
+share/games/colobot/models/subm4.mod
+share/games/colobot/models/subm5.mod
+share/games/colobot/models/target.mod
+share/games/colobot/models/target1.mod
+share/games/colobot/models/target2.mod
+share/games/colobot/models/teen0.mod
+share/games/colobot/models/teen1.mod
+share/games/colobot/models/teen10.mod
+share/games/colobot/models/teen11.mod
+share/games/colobot/models/teen12.mod
+share/games/colobot/models/teen13.mod
+share/games/colobot/models/teen14.mod
+share/games/colobot/models/teen15.mod
+share/games/colobot/models/teen16.mod
+share/games/colobot/models/teen17.mod
+share/games/colobot/models/teen18.mod
+share/games/colobot/models/teen19.mod
+share/games/colobot/models/teen2.mod
+share/games/colobot/models/teen20.mod
+share/games/colobot/models/teen21.mod
+share/games/colobot/models/teen22.mod
+share/games/colobot/models/teen23.mod
+share/games/colobot/models/teen24.mod
+share/games/colobot/models/teen25.mod
+share/games/colobot/models/teen26.mod
+share/games/colobot/models/teen27.mod
+share/games/colobot/models/teen28.mod
+share/games/colobot/models/teen29.mod
+share/games/colobot/models/teen3.mod
+share/games/colobot/models/teen30.mod
+share/games/colobot/models/teen31.mod
+share/games/colobot/models/teen32.mod
+share/games/colobot/models/teen33.mod
+share/games/colobot/models/teen34.mod
+share/games/colobot/models/teen35.mod
+share/games/colobot/models/teen36.mod
+share/games/colobot/models/teen37.mod
+share/games/colobot/models/teen38a.mod
+share/games/colobot/models/teen38b.mod
+share/games/colobot/models/teen38c.mod
+share/games/colobot/models/teen39.mod
+share/games/colobot/models/teen4.mod
+share/games/colobot/models/teen40.mod
+share/games/colobot/models/teen41.mod
+share/games/colobot/models/teen42.mod
+share/games/colobot/models/teen43.mod
+share/games/colobot/models/teen44.mod
+share/games/colobot/models/teen5.mod
+share/games/colobot/models/teen6.mod
+share/games/colobot/models/teen7.mod
+share/games/colobot/models/teen8.mod
+share/games/colobot/models/teen9.mod
+share/games/colobot/models/tnt.mod
+share/games/colobot/models/toto1.mod
+share/games/colobot/models/toto2.mod
+share/games/colobot/models/toto3.mod
+share/games/colobot/models/toto4.mod
+share/games/colobot/models/toto5.mod
+share/games/colobot/models/tower.mod
+share/games/colobot/models/trainerw.mod
+share/games/colobot/models/tree0.mod
+share/games/colobot/models/tree1.mod
+share/games/colobot/models/tree2.mod
+share/games/colobot/models/tree3.mod
+share/games/colobot/models/tree5.mod
+share/games/colobot/models/uranium.mod
+share/games/colobot/models/waypoint.mod
+share/games/colobot/models/winfire.mod
+share/games/colobot/models/worm1.mod
+share/games/colobot/models/worm2.mod
+share/games/colobot/models/worm3.mod
+share/games/colobot/music/Constructive.ogg
+share/games/colobot/music/Humanitarian.ogg
+share/games/colobot/music/Hv2.ogg
+share/games/colobot/music/Infinite.ogg
+share/games/colobot/music/Intro1.ogg
+share/games/colobot/music/Intro2.ogg
+share/games/colobot/music/Proton.ogg
+share/games/colobot/music/Prototype.ogg
+share/games/colobot/music/Quite.ogg
+share/games/colobot/music/music002.ogg
+share/games/colobot/music/music003.ogg
+share/games/colobot/music/music004.ogg
+share/games/colobot/music/music005.ogg
+share/games/colobot/music/music006.ogg
+share/games/colobot/music/music007.ogg
+share/games/colobot/music/music008.ogg
+share/games/colobot/music/music009.ogg
+share/games/colobot/music/music010.ogg
+share/games/colobot/music/music011.ogg
+share/games/colobot/music/music012.ogg
+share/games/colobot/music/music013.ogg
+share/games/colobot/shaders/gl21/fs_interface.glsl
+share/games/colobot/shaders/gl21/fs_normal.glsl
+share/games/colobot/shaders/gl21/fs_shadow.glsl
+share/games/colobot/shaders/gl21/vs_interface.glsl
+share/games/colobot/shaders/gl21/vs_normal.glsl
+share/games/colobot/shaders/gl21/vs_shadow.glsl
+share/games/colobot/shaders/gl33/fs_interface.glsl
+share/games/colobot/shaders/gl33/fs_normal.glsl
+share/games/colobot/shaders/gl33/fs_shadow.glsl
+share/games/colobot/shaders/gl33/vs_interface.glsl
+share/games/colobot/shaders/gl33/vs_normal.glsl
+share/games/colobot/shaders/gl33/vs_shadow.glsl
+share/games/colobot/sounds/sound000.wav
+share/games/colobot/sounds/sound001.wav
+share/games/colobot/sounds/sound002.wav
+share/games/colobot/sounds/sound003.wav
+share/games/colobot/sounds/sound004.wav
+share/games/colobot/sounds/sound005.wav
+share/games/colobot/sounds/sound006.wav
+share/games/colobot/sounds/sound007.wav
+share/games/colobot/sounds/sound008.wav
+share/games/colobot/sounds/sound009.wav
+share/games/colobot/sounds/sound010.wav
+share/games/colobot/sounds/sound011.wav
+share/games/colobot/sounds/sound012.wav
+share/games/colobot/sounds/sound013.wav
+share/games/colobot/sounds/sound014.wav
+share/games/colobot/sounds/sound015.wav
+share/games/colobot/sounds/sound016.wav
+share/games/colobot/sounds/sound017.wav
+share/games/colobot/sounds/sound018.wav
+share/games/colobot/sounds/sound019.wav
+share/games/colobot/sounds/sound020.wav
+share/games/colobot/sounds/sound021.wav
+share/games/colobot/sounds/sound022.wav
+share/games/colobot/sounds/sound023.wav
+share/games/colobot/sounds/sound024.wav
+share/games/colobot/sounds/sound025.wav
+share/games/colobot/sounds/sound026.wav
+share/games/colobot/sounds/sound027.wav
+share/games/colobot/sounds/sound028.wav
+share/games/colobot/sounds/sound029.wav
+share/games/colobot/sounds/sound030.wav
+share/games/colobot/sounds/sound031.wav
+share/games/colobot/sounds/sound032.wav
+share/games/colobot/sounds/sound033.wav
+share/games/colobot/sounds/sound034.wav
+share/games/colobot/sounds/sound035.wav
+share/games/colobot/sounds/sound036.wav
+share/games/colobot/sounds/sound037.wav
+share/games/colobot/sounds/sound038.wav
+share/games/colobot/sounds/sound039.wav
+share/games/colobot/sounds/sound040.wav
+share/games/colobot/sounds/sound041.wav
+share/games/colobot/sounds/sound042.wav
+share/games/colobot/sounds/sound043.wav
+share/games/colobot/sounds/sound044.wav
+share/games/colobot/sounds/sound045.wav
+share/games/colobot/sounds/sound046.wav
+share/games/colobot/sounds/sound047.wav
+share/games/colobot/sounds/sound048.wav
+share/games/colobot/sounds/sound049.wav
+share/games/colobot/sounds/sound050.wav
+share/games/colobot/sounds/sound051.wav
+share/games/colobot/sounds/sound052.wav
+share/games/colobot/sounds/sound053.wav
+share/games/colobot/sounds/sound054.wav
+share/games/colobot/sounds/sound055.wav
+share/games/colobot/sounds/sound056.wav
+share/games/colobot/sounds/sound057.wav
+share/games/colobot/sounds/sound058.wav
+share/games/colobot/sounds/sound059.wav
+share/games/colobot/sounds/sound060.wav
+share/games/colobot/sounds/sound061.wav
+share/games/colobot/sounds/sound062.wav
+share/games/colobot/sounds/sound063.wav
+share/games/colobot/sounds/sound064.wav
+share/games/colobot/sounds/sound065.wav
+share/games/colobot/sounds/sound066.wav
+share/games/colobot/sounds/sound067.wav
+share/games/colobot/sounds/sound068.wav
+share/games/colobot/sounds/sound069.wav
+share/games/colobot/sounds/sound070.wav
+share/games/colobot/sounds/sound071.wav
+share/games/colobot/sounds/sound072.wav
+share/games/colobot/sounds/sound073.wav
+share/games/colobot/sounds/sound074.wav
+share/games/colobot/sounds/sound075.wav
+share/games/colobot/sounds/sound076.wav
+share/games/colobot/sounds/sound077.wav
+share/games/colobot/sounds/sound078.wav
+share/games/colobot/sounds/sound079.wav
+share/games/colobot/sounds/sound080.wav
+share/games/colobot/sounds/sound081.wav
+share/games/colobot/sounds/sound082.wav
+share/games/colobot/textures/back01.png
+share/games/colobot/textures/back22.png
+share/games/colobot/textures/back33.png
+share/games/colobot/textures/back46.png
+share/games/colobot/textures/chili01.png
+share/games/colobot/textures/chili02.png
+share/games/colobot/textures/cloud02.png
+share/games/colobot/textures/cloud03.png
+share/games/colobot/textures/cloud04.png
+share/games/colobot/textures/cloud05.png
+share/games/colobot/textures/cloud09.png
+share/games/colobot/textures/desert4.png
+share/games/colobot/textures/desert5.png
+share/games/colobot/textures/desert6.png
+share/games/colobot/textures/dirty01.png
+share/games/colobot/textures/dirty02.png
+share/games/colobot/textures/dirty03.png
+share/games/colobot/textures/dirty04.png
+share/games/colobot/textures/dirty06.png
+share/games/colobot/textures/dirty08.png
+share/games/colobot/textures/dirty09.png
+share/games/colobot/textures/effect00.png
+share/games/colobot/textures/effect01.png
+share/games/colobot/textures/effect02.png
+share/games/colobot/textures/effect03.png
+share/games/colobot/textures/green01.png
+share/games/colobot/textures/green02.png
+share/games/colobot/textures/interface/button1.png
+share/games/colobot/textures/interface/button2.png
+share/games/colobot/textures/interface/button3.png
+share/games/colobot/textures/interface/button4.png
+share/games/colobot/textures/interface/generico.png
+share/games/colobot/textures/interface/interface.png
+share/games/colobot/textures/interface/intro1.png
+share/games/colobot/textures/interface/intro2.png
+share/games/colobot/textures/interface/intro3.png
+share/games/colobot/textures/interface/mouse.png
+share/games/colobot/textures/lava04.png
+share/games/colobot/textures/lava05.png
+share/games/colobot/textures/lens1.png
+share/games/colobot/textures/lens4.png
+share/games/colobot/textures/lens5.png
+share/games/colobot/textures/mars001.png
+share/games/colobot/textures/mars002.png
+share/games/colobot/textures/mars003.png
+share/games/colobot/textures/mars004.png
+share/games/colobot/textures/mars005.png
+share/games/colobot/textures/mars006.png
+share/games/colobot/textures/mars007.png
+share/games/colobot/textures/mars008.png
+share/games/colobot/textures/mars103.png
+share/games/colobot/textures/mix01.png
+share/games/colobot/textures/moon103.png
+share/games/colobot/textures/objects/ant.png
+share/games/colobot/textures/objects/apollo.png
+share/games/colobot/textures/objects/base1.png
+share/games/colobot/textures/objects/cellar01.png
+share/games/colobot/textures/objects/convert.png
+share/games/colobot/textures/objects/derrick.png
+share/games/colobot/textures/objects/drawer.png
+share/games/colobot/textures/objects/face01.png
+share/games/colobot/textures/objects/face02.png
+share/games/colobot/textures/objects/face03.png
+share/games/colobot/textures/objects/face04.png
+share/games/colobot/textures/objects/factory.png
+share/games/colobot/textures/objects/human.png
+share/games/colobot/textures/objects/kid.png
+share/games/colobot/textures/objects/kid2.png
+share/games/colobot/textures/objects/kid3.png
+share/games/colobot/textures/objects/lemt.png
+share/games/colobot/textures/objects/mother.png
+share/games/colobot/textures/objects/plant.png
+share/games/colobot/textures/objects/roller.png
+share/games/colobot/textures/objects/search.png
+share/games/colobot/textures/objects/subm.png
+share/games/colobot/textures/objects/vegetal.png
+share/games/colobot/textures/objects/wood01.png
+share/games/colobot/textures/planet01.png
+share/games/colobot/textures/planet02.png
+share/games/colobot/textures/planet03.png
+share/games/colobot/textures/planet04.png
+share/games/colobot/textures/planets/planet-earth.png
+share/games/colobot/textures/planets/planet-moon.png
+share/games/colobot/textures/planets/planet-terranova.png
+share/games/colobot/textures/relief01.png
+share/games/colobot/textures/relief02.png
+share/games/colobot/textures/relief03.png
+share/games/colobot/textures/relief04.png
+share/games/colobot/textures/relief05.png
+share/games/colobot/textures/relief06.png
+share/games/colobot/textures/relief08.png
+share/games/colobot/textures/relief09.png
+share/games/colobot/textures/relief10.png
+share/games/colobot/textures/relief11.png
+share/games/colobot/textures/relief12.png
+share/games/colobot/textures/relief13.png
+share/games/colobot/textures/relief14.png
+share/games/colobot/textures/relief15.png
+share/games/colobot/textures/relief16.png
+share/games/colobot/textures/relief17.png
+share/games/colobot/textures/relief18.png
+share/games/colobot/textures/relief19.png
+share/games/colobot/textures/relief20.png
+share/games/colobot/textures/relief22.png
+share/games/colobot/textures/relief23.png
+share/games/colobot/textures/relief24.png
+share/games/colobot/textures/relief25.png
+share/games/colobot/textures/relief26.png
+share/games/colobot/textures/relief27.png
+share/games/colobot/textures/relief28.png
+share/games/colobot/textures/relief29.png
+share/games/colobot/textures/relief30.png
+share/games/colobot/textures/relief31.png
+share/games/colobot/textures/relief32.png
+share/games/colobot/textures/relief33.png
+share/games/colobot/textures/relief34.png
+share/games/colobot/textures/relief41.png
+share/games/colobot/textures/relief45.png
+share/games/colobot/textures/relief47.png
+share/games/colobot/textures/relief51.png
+share/games/colobot/textures/relief52.png
+share/games/colobot/textures/relief54.png
+share/games/colobot/textures/relief55.png
+share/games/colobot/textures/relief56.png
+share/games/colobot/textures/res00.png
+share/games/colobot/textures/res01.png
+share/games/colobot/textures/res02.png
+share/games/colobot/textures/res03.png
+share/games/colobot/textures/res04.png
+share/games/colobot/textures/res05.png
+share/games/colobot/textures/res06.png
+share/games/colobot/textures/res07.png
+share/games/colobot/textures/res08.png
+share/games/colobot/textures/res09.png
+share/games/colobot/textures/res10.png
+share/games/colobot/textures/res11.png
+share/games/colobot/textures/res12.png
+share/games/colobot/textures/res13.png
+share/games/colobot/textures/res14.png
+share/games/colobot/textures/res15.png
+share/games/colobot/textures/resae.png
+share/games/colobot/textures/resas.png
+share/games/colobot/textures/roca2.png
+share/games/colobot/textures/rocb2.png
+share/games/colobot/textures/terra002.png
+share/games/colobot/textures/water12.png
+share/games/colobot/textures/water16.png
+share/locale/cs/LC_MESSAGES/colobot.mo
+share/locale/de/LC_MESSAGES/colobot.mo
+share/locale/fr/LC_MESSAGES/colobot.mo
+share/locale/pl/LC_MESSAGES/colobot.mo
+share/locale/pt/LC_MESSAGES/colobot.mo
+share/locale/ru/LC_MESSAGES/colobot.mo
+@dir share/games/colobot/mods