Added classes and interfaces for districts + updated map and some renames
authorRoland Haeder <roland@mxchange.org>
Sat, 1 Aug 2015 14:41:38 +0000 (16:41 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 1 Aug 2015 14:42:40 +0000 (16:42 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
14 files changed:
application/city/config.php
application/city/interfaces/database/frontend/city_entities/districts/.htaccess [new file with mode: 0644]
application/city/interfaces/database/frontend/city_entities/districts/class_CityDistrictsWrapper.php [new file with mode: 0644]
application/city/interfaces/manager/city_entities/districts/.htaccess [new file with mode: 0644]
application/city/interfaces/manager/city_entities/districts/class_ManageableCityDistricts.php [new file with mode: 0644]
application/city/main/city_daemon/class_BaseCityDaemon.php
application/city/main/database/frontend/city_entities/districts/.htaccess [new file with mode: 0644]
application/city/main/database/frontend/city_entities/districts/class_CityDistrictsDatabaseWrapper.php [new file with mode: 0644]
application/city/main/database/frontend/city_entities/lots/class_CityLotsDatabaseWrapper.php
application/city/main/database/frontend/city_entities/sections/class_CitySectionsDatabaseWrapper.php
application/city/main/manager/city_entities/districts/.htaccess [new file with mode: 0644]
application/city/main/manager/city_entities/districts/class_CityDistrictsManager.php [new file with mode: 0644]
application/city/main/manager/city_entities/lots/class_CityLotsManager.php
docs/mindmaps/Simple City Growth Simulation.mm

index 15a52667011d2324f8d3a9c65339d242d209dbcb..069434b91bde6992076f2db1859d83d02fe4ffe4 100644 (file)
@@ -52,6 +52,12 @@ $cfg->setConfigEntry('region_map_db_wrapper_class', 'RegionMapDatabaseWrapper');
 // CFG: CITY-SECTIONS-DB-WRAPPER-CLASS
 $cfg->setConfigEntry('city_sections_db_wrapper_class', 'CitySectionsDatabaseWrapper');
 
+// CFG: CITY-LOTS-DB-WRAPPER-CLASS
+$cfg->setConfigEntry('city_lots_db_wrapper_class', 'CityLotsDatabaseWrapper');
+
+// CFG: CITY-DISTRICTS-DB-WRAPPER-CLASS
+$cfg->setConfigEntry('city_districts_db_wrapper_class', 'CityDistrictsDatabaseWrapper');
+
 // CFG: CITY-INIT-STATE-CLASS
 $cfg->setConfigEntry('city_init_state_class', 'CityInitState');
 
@@ -485,6 +491,12 @@ $cfg->setConfigEntry('city_manager_class', 'CityManager');
 // CFG: CITY-SECTIONS-MANAGER-CLASS
 $cfg->setConfigEntry('city_sections_manager_class', 'CitySectionsManager');
 
+// CFG: CITY-LOTS-MANAGER-CLASS
+$cfg->setConfigEntry('city_lots_manager_class', 'CityLotsManager');
+
+// CFG: CITY-DISTRICTS-MANAGER-CLASS
+$cfg->setConfigEntry('city_districts_manager_class', 'CityDistrictsManager');
+
 // CFG: REGION-MANAGER-CLASS
 $cfg->setConfigEntry('region_manager_class', 'RegionManager');
 
diff --git a/application/city/interfaces/database/frontend/city_entities/districts/.htaccess b/application/city/interfaces/database/frontend/city_entities/districts/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/application/city/interfaces/database/frontend/city_entities/districts/class_CityDistrictsWrapper.php b/application/city/interfaces/database/frontend/city_entities/districts/class_CityDistrictsWrapper.php
new file mode 100644 (file)
index 0000000..19999f1
--- /dev/null
@@ -0,0 +1,35 @@
+<?php
+/**
+ * An interface for city districts (database) wrapper
+ *
+ * @author             Roland Haeder <webmaster@shipsimu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2015 City Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.shipsimu.org
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+interface CityDistrictsWrapper extends DatabaseWrapper {
+       /**
+        * Checks if the given city id is found in districts table
+        *
+        * @param       $cityId         City id to check
+        * @return      $isFound        Whether the city id is found
+        */
+       function ifCityHasDistricts ($cityId);
+}
+
+// [EOF]
+?>
diff --git a/application/city/interfaces/manager/city_entities/districts/.htaccess b/application/city/interfaces/manager/city_entities/districts/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/application/city/interfaces/manager/city_entities/districts/class_ManageableCityDistricts.php b/application/city/interfaces/manager/city_entities/districts/class_ManageableCityDistricts.php
new file mode 100644 (file)
index 0000000..4fc2843
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+/**
+ * An interface districts manager
+ *
+ * @author             Roland Haeder <webmaster@shipsimu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2015 City Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.shipsimu.org
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+interface ManageableCityDistricts extends ManageableCityEntities {
+}
+
+// [EOF]
+?>
index 89b3a51ff63f73d624add13ee8c994de53c339ed..8584bebd2ac0ce840de6d382b2585e94f53ab6c7 100644 (file)
@@ -257,10 +257,10 @@ class BaseCityDaemon extends BaseCitySystem implements Updateable, AddableCriter
         */
        public function isMapPendingExpansion () {
                // Get sections manager
-               $mapInstance = ManagerFactory::createManagerByType('city_sections');
+               $sectionsInstance = ManagerFactory::createManagerByType('city_sections');
 
                // Call it's method and return value
-               return $mapInstance->isMapPendingExpansion();
+               return $sectionsInstance->isMapPendingExpansion();
        }
 
        /**
@@ -270,10 +270,10 @@ class BaseCityDaemon extends BaseCitySystem implements Updateable, AddableCriter
         */
        public function expandMaps () {
                // Get sections manager
-               $mapInstance = ManagerFactory::createManagerByType('city_sections');
+               $sectionsInstance = ManagerFactory::createManagerByType('city_sections');
 
                // Call it's method and return value
-               $mapInstance->expandMaps();
+               $sectionsInstance->expandMaps();
        }
 }
 
diff --git a/application/city/main/database/frontend/city_entities/districts/.htaccess b/application/city/main/database/frontend/city_entities/districts/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/application/city/main/database/frontend/city_entities/districts/class_CityDistrictsDatabaseWrapper.php b/application/city/main/database/frontend/city_entities/districts/class_CityDistrictsDatabaseWrapper.php
new file mode 100644 (file)
index 0000000..67ea7c4
--- /dev/null
@@ -0,0 +1,89 @@
+<?php
+/**
+ * A database wrapper for city districts
+ *
+ * @author             Roland Haeder <webmaster@shipsimu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2015 City Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.shipsimu.org
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+class CityDistrictsDatabaseWrapper extends BaseDatabaseWrapper implements CityDistrictsWrapper, Registerable {
+       // Constants for database table names
+       const DB_TABLE_CITY_DISTRICTS = 'city_districts';
+
+       // Section id, an referenced city id and district id
+       const DB_COLUMN_CITY_ID                = 'city_id';
+       const DB_COLUMN_DISTRICT_ID            = 'district_id';
+
+       /**
+        * Protected constructor
+        *
+        * @return      void
+        */
+       protected function __construct () {
+               // Call parent constructor
+               parent::__construct(__CLASS__);
+       }
+
+       /**
+        * Creates an instance of this database wrapper by a provided user class
+        *
+        * @return      $wrapperInstance        An instance of the created wrapper class
+        */
+       public static final function createCityDistrictsDatabaseWrapper () {
+               // Get a new instance
+               $wrapperInstance = new CityDistrictsDatabaseWrapper();
+
+               // Set (primary!) table name
+               $wrapperInstance->setTableName(self::DB_TABLE_CITY_DISTRICTS);
+
+               // Return the instance
+               return $wrapperInstance;
+       }
+
+       /**
+        * Checks if the given city id is found in districts table
+        *
+        * @param       $cityId         City id to check
+        * @return      $isFound        Whether the city id is found
+        */
+       public function ifCityHasDistricts ($cityId) {
+               // Get search instance
+               $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
+
+               // Search for 'city_id'
+               $searchInstance->addCriteria(self::DB_COLUMN_CITY_ID, $cityId);
+
+               /*
+                * Only one entry is enough to find, else this query could run very\
+                * long on large maps.
+                */
+               $searchInstance->setLimit(1);
+
+               // Execute it on database instance
+               $resultInstance = $this->doSelectByCriteria($searchInstance);
+
+               // Check if there is one entry
+               $isFound = ($resultInstance->next() == 1);
+
+               // Return result
+               return $isFound;
+       }
+}
+
+// [EOF]
+?>
index cafd007f8fb5cf572ceec1431c54c7e2edb0f04b..7e4bfd50a004dba34c3645312dbbd65a8af6627d 100644 (file)
@@ -28,6 +28,7 @@ class CityLotsDatabaseWrapper extends BaseDatabaseWrapper implements CityLotsWra
        // Section id, an referenced city id and lot id
        const DB_COLUMN_CITY_ID                = 'city_id';
        const DB_COLUMN_LOT_ID                 = 'lot_id';
+       const DB_COLUMN_DISTRICT_ID            = 'district_id';
 
        /**
         * Protected constructor
index 007129db6f2bc8c2a1c9e8083199a996a26d599c..941dc023c4eed7b42712898d481d7d539450a83d 100644 (file)
@@ -1,6 +1,14 @@
 <?php
 /**
- * A database wrapper for city sections
+ * A database wrapper for city sections. Sections are the smalles entity of a
+ * city. They can be connected with each other and form a lot. Therefore only
+ * sections of same type (and sub type) can be linked combined, else you will
+ * something really strange, a residential building with some industry parts
+ * for example is not possible in real world.
+ *
+ * Sure you can have a small shop (commercial) on ground level and some
+ * residentials on higher levels. This city simulation does support such
+ * creations as the levels (Z axis) is different.
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
@@ -28,6 +36,11 @@ class CitySectionsDatabaseWrapper extends BaseDatabaseWrapper implements CitySec
        // Section id, an referenced city id and lot id
        const DB_COLUMN_SECTION_ID             = 'city_section_id';
        const DB_COLUMN_CITY_ID                = 'city_id';
+
+       /*
+        * Lot id, the lot id is only set if the player has "aquired" the sections
+        * and has created a lot based on these sections.
+        */
        const DB_COLUMN_LOT_ID                 = 'lot_id';
 
        // Section and sub type (e.g. residential, hut)
diff --git a/application/city/main/manager/city_entities/districts/.htaccess b/application/city/main/manager/city_entities/districts/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/application/city/main/manager/city_entities/districts/class_CityDistrictsManager.php b/application/city/main/manager/city_entities/districts/class_CityDistrictsManager.php
new file mode 100644 (file)
index 0000000..e1f1907
--- /dev/null
@@ -0,0 +1,101 @@
+<?php
+/**
+ * A city districts manager
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2015 City Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.ship-simu.org
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+class CityDistrictsManager extends BaseFrameworkSystem implements ManageableCityDistricts, Registerable {
+       /**
+        * Protected constructor
+        *
+        * @return      void
+        */
+       protected function __construct () {
+               // Call parent constructor
+               parent::__construct(__CLASS__);
+       }
+
+       /**
+        * Creates an instance of this class
+        *
+        * @return      $managerInstance        An instance of a ManageableCityDistricts class
+        */
+       public final static function createCityDistrictsManager () {
+               // Get new instance
+               $managerInstance = new CityDistrictsManager();
+
+               // Get database wrapper
+               $wrapperInstance = DatabaseWrapperFactory::createWrapperByConfiguredName('city_districts_db_wrapper_class');
+
+               // And set it here
+               $managerInstance->setWrapperInstance($wrapperInstance);
+
+               // Return the prepared instance
+               return $managerInstance;
+       }
+
+       /**
+        * Checks whether at least one map requires expansion
+        *
+        * @return      $requiresExpansion      Whether a map requires expansion
+        * @todo        0% done
+        */
+       public function isMapPendingExpansion () {
+               // Default is no expansion is needed
+               $requireExpansion = FALSE;
+
+               // First, a simple check if the districts table contains any entries at all
+               if ($this->getWrapperInstance()->countTotalRows() == 0) {
+                       // This definedly requires expansion
+                       $requireExpansion = TRUE;
+               } // END - if
+
+               // Return status
+               return $requireExpansion;
+       }
+
+       /**
+        * Expands any map that requires expansion
+        *
+        * @return      void
+        * @todo 0% done
+        */
+       public function expandMaps () {
+               // Get a city info wrapper instance
+               $cityWrapperInstance = DatabaseWrapperFactory::createWrapperByConfiguredName('city_info_db_wrapper_class');
+
+               // Get all city ids from it
+               $cityIds = $cityWrapperInstance->getAllCityIds();
+
+               // Now check all ids
+               foreach ($cityIds as $cityId) {
+                       // Does this id have any districts
+                       if (!$this->getWrapperInstance()->ifCityHasDistricts($cityId)) {
+                               // Nothing found, so it is a brand-new city that needs first initialization
+                               $districts = $this->getWrapperInstance()->doInitialCityExpansion($cityId);
+                       } else {
+                               // @TODO Maybe some expansion is needed
+                       }
+               } // END - foreach
+       }
+}
+
+// [EOF]
+?>
index 5e25cc4d1be997adaf5fe5d152de46a158e92a19..29539b66da134b8d49a3d31673c4685661fa74d6 100644 (file)
@@ -89,7 +89,7 @@ class CityLotsManager extends BaseFrameworkSystem implements ManageableCityLots,
                        // Does this id have any lots
                        if (!$this->getWrapperInstance()->ifCityHasLots($cityId)) {
                                // Nothing found, so it is a brand-new city that needs first initialization
-                               $sections = $this->getWrapperInstance()->doInitialCityExpansion($cityId);
+                               $lots = $this->getWrapperInstance()->doInitialCityExpansion($cityId);
                        } else {
                                // @TODO Maybe some expansion is needed
                        }
index 9ab289f7d8592f0219158a3b1c7c0299ffa7be7d..2017422cd4da160b98bacbd9ecb5f39e99c89a12 100644 (file)
@@ -1,6 +1,6 @@
 <map version="freeplane 1.3.0">
 <!--To view this file, download free mind mapping software Freeplane from http://freeplane.sourceforge.net -->
-<node TEXT="Simple City Growth Simulation" FOLDED="false" ID="ID_1723255651" CREATED="1283093380553" MODIFIED="1438114061166"><hook NAME="MapStyle">
+<node TEXT="Simple City Growth Simulation" FOLDED="false" ID="ID_1723255651" CREATED="1283093380553" MODIFIED="1438436532390"><hook NAME="MapStyle">
     <properties fit_to_viewport="false;"/>
 
 <map_styles>
 <hook NAME="AutomaticEdgeColor" COUNTER="4"/>
 <font NAME="Dialog" SIZE="20" BOLD="true"/>
 <hook NAME="accessories/plugins/AutomaticLayout.properties" VALUE="ALL"/>
-<node TEXT="General ideas" POSITION="right" ID="ID_1976950711" CREATED="1434011684265" MODIFIED="1438114061167" HGAP="30" VSHIFT="-10">
+<node TEXT="General ideas" POSITION="right" ID="ID_1976950711" CREATED="1434011684265" MODIFIED="1438436532078">
 <edge COLOR="#ff0000"/>
 <font NAME="Dialog" SIZE="16" BOLD="true"/>
-<node TEXT="A web/GTK/what-ever client shall only interact with the user" ID="ID_875397198" CREATED="1434011786953" MODIFIED="1438114061168">
+<node TEXT="A web/GTK/what-ever client shall only interact with the user" ID="ID_875397198" CREATED="1434011786953" MODIFIED="1438436532018">
 <font NAME="Dialog" SIZE="12" BOLD="true"/>
-<node TEXT="This minimizes code and execution time of each &quot;cycle&quot;" ID="ID_1885439185" CREATED="1434011807721" MODIFIED="1438114061169">
+<node TEXT="This minimizes code and execution time of each &quot;cycle&quot;" ID="ID_1885439185" CREATED="1434011807721" MODIFIED="1438436531994">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Separation of user-interaction code and game-logic code" ID="ID_118094277" CREATED="1434011834457" MODIFIED="1438114061169">
+<node TEXT="Separation of user-interaction code and game-logic code" ID="ID_118094277" CREATED="1434011834457" MODIFIED="1438436532010">
 <font NAME="Dialog"/>
-<node TEXT="Not fully separateable as &quot;communication&quot; between frontend and backend is needed" ID="ID_1215935758" CREATED="1434012574730" MODIFIED="1438114061170">
+<node TEXT="Not fully separateable as &quot;communication&quot; between frontend and backend is needed" ID="ID_1215935758" CREATED="1434012574730" MODIFIED="1438436532004">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Daemon may accept input over a very simple API?" ID="ID_1694246698" CREATED="1434012622890" MODIFIED="1438114061174">
+<node TEXT="Daemon may accept input over a very simple API?" ID="ID_1694246698" CREATED="1434012622890" MODIFIED="1438436532009">
 <icon BUILTIN="help"/>
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Documentation needs to clarify this to avoid confusion" ID="ID_1188664004" CREATED="1434011864841" MODIFIED="1438114061175">
+<node TEXT="Documentation needs to clarify this to avoid confusion" ID="ID_1188664004" CREATED="1434011864841" MODIFIED="1438436532013">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Different clients" ID="ID_1448493609" CREATED="1434012210025" MODIFIED="1438114061176">
+<node TEXT="Different clients" ID="ID_1448493609" CREATED="1434012210025" MODIFIED="1438436532059">
 <font NAME="Dialog"/>
-<node TEXT="HTML client" ID="ID_1509545081" CREATED="1434012223850" MODIFIED="1438114061176">
+<node TEXT="HTML client" ID="ID_1509545081" CREATED="1434012223850" MODIFIED="1438436532055">
 <font NAME="Dialog"/>
-<node TEXT="First simple client" ID="ID_1295717226" CREATED="1434012228602" MODIFIED="1438114061177">
+<node TEXT="First simple client" ID="ID_1295717226" CREATED="1434012228602" MODIFIED="1438436532025">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Requires PHP5.4-5.6" ID="ID_493420238" CREATED="1434012461546" MODIFIED="1438114061178">
+<node TEXT="Requires PHP5.4-5.6" ID="ID_493420238" CREATED="1434012461546" MODIFIED="1438436532029">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Runs on any OS" ID="ID_1368931976" CREATED="1434012264154" MODIFIED="1438114061179">
+<node TEXT="Runs on any OS" ID="ID_1368931976" CREATED="1434012264154" MODIFIED="1438436532047">
 <font NAME="Dialog"/>
-<node TEXT="Apache friends on Windows" ID="ID_1951934902" CREATED="1434012319242" MODIFIED="1438114061180">
+<node TEXT="Apache friends on Windows" ID="ID_1951934902" CREATED="1434012319242" MODIFIED="1438436532038">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Many Linux distributions have Lighttd/Apache" ID="ID_966127342" CREATED="1434012401386" MODIFIED="1438114061181">
+<node TEXT="Many Linux distributions have Lighttd/Apache" ID="ID_966127342" CREATED="1434012401386" MODIFIED="1438436532042">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="MacOS/X-OS should also have a web server with PHP5" ID="ID_1436673076" CREATED="1434012424042" MODIFIED="1438114061182">
+<node TEXT="MacOS/X-OS should also have a web server with PHP5" ID="ID_1436673076" CREATED="1434012424042" MODIFIED="1438436532046">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Requires only a browser with XHTML/CSS capabilities" ID="ID_1205975982" CREATED="1434012273818" MODIFIED="1438114061182">
+<node TEXT="Requires only a browser with XHTML/CSS capabilities" ID="ID_1205975982" CREATED="1434012273818" MODIFIED="1438436532050">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Maybe later AJAX?" ID="ID_594061591" CREATED="1434012294986" MODIFIED="1438114061183">
+<node TEXT="Maybe later AJAX?" ID="ID_594061591" CREATED="1434012294986" MODIFIED="1438436532053">
 <icon BUILTIN="idea"/>
 <icon BUILTIN="help"/>
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="SDL, GTK" ID="ID_200066458" CREATED="1434012236329" MODIFIED="1438114061184">
+<node TEXT="SDL, GTK" ID="ID_200066458" CREATED="1434012236329" MODIFIED="1438436532057">
 <icon BUILTIN="help"/>
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="A daemon will do the heavy work" ID="ID_624846218" CREATED="1434011882905" MODIFIED="1438114061185">
+<node TEXT="A daemon will do the heavy work" ID="ID_624846218" CREATED="1434011882905" MODIFIED="1438436532074">
 <font NAME="Dialog" SIZE="12" BOLD="true"/>
-<node TEXT="The (almost) whole game-logic is here" ID="ID_386345642" CREATED="1434011900457" MODIFIED="1438114061186">
+<node TEXT="The (almost) whole game-logic is here" ID="ID_386345642" CREATED="1434011900457" MODIFIED="1438436532065">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Registering the player and such things are NOT done here" ID="ID_1754557403" CREATED="1434011924041" MODIFIED="1438114061187">
+<node TEXT="Registering the player and such things are NOT done here" ID="ID_1754557403" CREATED="1434011924041" MODIFIED="1438436532069">
 <font NAME="Dialog" BOLD="false"/>
 </node>
-<node TEXT="Can execute chronological tasks" ID="ID_86457313" CREATED="1434012015129" MODIFIED="1438114061188">
+<node TEXT="Can execute chronological tasks" ID="ID_86457313" CREATED="1434012015129" MODIFIED="1438436532073">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Cron jobs may be handy" ID="ID_1632135863" CREATED="1434012058777" MODIFIED="1438114061188">
+<node TEXT="Cron jobs may be handy" ID="ID_1632135863" CREATED="1434012058777" MODIFIED="1438436532086">
 <icon BUILTIN="idea"/>
 <font NAME="Dialog" SIZE="12" BOLD="true"/>
-<node TEXT="They may run code that would normally be executed by the daemon" ID="ID_311573395" CREATED="1434012095033" MODIFIED="1438114061189">
+<node TEXT="They may run code that would normally be executed by the daemon" ID="ID_311573395" CREATED="1434012095033" MODIFIED="1438436532081">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Need to be enabled in configuration" ID="ID_248368827" CREATED="1434012125705" MODIFIED="1438114061193">
+<node TEXT="Need to be enabled in configuration" ID="ID_248368827" CREATED="1434012125705" MODIFIED="1438436532084">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Database design" POSITION="right" ID="ID_37881891" CREATED="1437302882441" MODIFIED="1438114061163">
+<node TEXT="Database design" POSITION="right" ID="ID_37881891" CREATED="1437302882441" MODIFIED="1438436532088">
 <edge COLOR="#ff00ff"/>
 <font NAME="Dialog" BOLD="true"/>
-<node TEXT="Table &apos;city_data&apos;" ID="ID_1517130846" CREATED="1437302960255" MODIFIED="1438114061194">
-<font NAME="Dialog"/>
-<node TEXT="General" ID="ID_1679802479" CREATED="1437303004879" MODIFIED="1438114061195">
+<node TEXT="Table &apos;city_sections&apos;" ID="ID_687749514" CREATED="1437302980767" MODIFIED="1438436532204">
+<font NAME="Dialog" BOLD="false"/>
+<node TEXT="General" ID="ID_474767046" CREATED="1437303004879" MODIFIED="1438436532200">
 <font NAME="Dialog"/>
-<node TEXT="General city data" ID="ID_165551090" CREATED="1437303018975" MODIFIED="1438114061196">
+<node TEXT="Data about every &quot;section&quot; of the map" ID="ID_706898114" CREATED="1438113191042" MODIFIED="1438436532190">
 <font NAME="Dialog"/>
-<node TEXT="Name of city" ID="ID_923685594" CREATED="1437303067567" MODIFIED="1438114061197">
+<node TEXT="A &quot;section&quot; is a part of a lot, one lot can consist of many sections." ID="ID_921617708" CREATED="1438113220514" MODIFIED="1438436532174">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Linked user profile" ID="ID_939423900" CREATED="1437303071119" MODIFIED="1438114061198">
+<node TEXT="Sections can be interconnected forming a lot." ID="ID_311582300" CREATED="1438113245522" MODIFIED="1438436532177">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Linked region" ID="ID_568383767" CREATED="1437303513553" MODIFIED="1438114061199">
+<node TEXT="As the design is free, lots can have a very complex schema." ID="ID_83833944" CREATED="1438113262386" MODIFIED="1438436532186">
+<font NAME="Dialog"/>
+<node TEXT="Complex schemas cost more checking (connectivity)." ID="ID_1107051645" CREATED="1438113285794" MODIFIED="1438436532185">
 <font NAME="Dialog"/>
 </node>
 </node>
-</node>
-<node TEXT="Columns" ID="ID_7311076" CREATED="1437303337311" MODIFIED="1438114061199">
+<node TEXT="Sections can be connected under some conditions" ID="ID_1997337266" CREATED="1438113307426" MODIFIED="1438436532197">
 <font NAME="Dialog"/>
-<node TEXT="city_id" ID="ID_94440353" CREATED="1437303421119" MODIFIED="1438114061200">
+<node TEXT="Same type and sub type (last will be the case if the section is new)." ID="ID_91580431" CREATED="1438113326866" MODIFIED="1438436532192">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="city_mode" ID="ID_1714851680" CREATED="1437303423807" MODIFIED="1438114061201">
+<node TEXT="???" ID="ID_1205544781" CREATED="1438113353186" MODIFIED="1438436532196">
+<icon BUILTIN="xmag"/>
 <font NAME="Dialog"/>
 </node>
-<node TEXT="city_name" ID="ID_442480951" CREATED="1437303428351" MODIFIED="1438114061202">
-<font NAME="Dialog"/>
 </node>
-<node TEXT="city_user_id" ID="ID_1451478104" CREATED="1437303435967" MODIFIED="1438114061203">
-<font NAME="Dialog"/>
 </node>
-<node TEXT="city_region_id" ID="ID_1079814383" CREATED="1437303439983" MODIFIED="1438114061204">
+<node TEXT="The actual map is not respresented in this table." ID="ID_1092149346" CREATED="1438113205842" MODIFIED="1438436532199">
 <font NAME="Dialog"/>
 </node>
 </node>
-</node>
-<node TEXT="Table &apos;city_sections&apos;" ID="ID_687749514" CREATED="1437302980767" MODIFIED="1438114061204">
+<node TEXT="Columns" ID="ID_920050758" CREATED="1437304640033" MODIFIED="1438436532336">
 <font NAME="Dialog"/>
-<node TEXT="General" ID="ID_474767046" CREATED="1437303004879" MODIFIED="1438114061205">
+<node TEXT="city_section_id" ID="ID_1222802193" CREATED="1438113174250" MODIFIED="1438436532213">
 <font NAME="Dialog"/>
-<node TEXT="Data about every &quot;section&quot; of the map" ID="ID_706898114" CREATED="1438113191042" MODIFIED="1438114061206">
+<node TEXT="Identifying id (primay key)" ID="ID_1477392904" CREATED="1438114101107" MODIFIED="1438436532212"/>
+</node>
+<node TEXT="city_id" ID="ID_1775845045" CREATED="1438113174250" MODIFIED="1438436532224">
 <font NAME="Dialog"/>
-<node TEXT="A &quot;section&quot; is a part of a lot, one lot can consist of many sections." ID="ID_921617708" CREATED="1438113220514" MODIFIED="1438114061207">
+<node TEXT="Connection to city_data table" ID="ID_512145443" CREATED="1438113430866" MODIFIED="1438436532222">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Sections can be interconnected forming a lot." ID="ID_311582300" CREATED="1438113245522" MODIFIED="1438114061208">
-<font NAME="Dialog"/>
 </node>
-<node TEXT="As the design is free, lots can have a very complex schema." ID="ID_83833944" CREATED="1438113262386" MODIFIED="1438114061209">
+<node TEXT="lot_id" ID="ID_1011749811" CREATED="1438113174253" MODIFIED="1438436532234">
 <font NAME="Dialog"/>
-<node TEXT="Complex schemas cost more checking (connectivity)." ID="ID_1107051645" CREATED="1438113285794" MODIFIED="1438114061210">
+<node TEXT="Connection to city_lots" ID="ID_468138173" CREATED="1438113437138" MODIFIED="1438436532233">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Sections can be connected under some conditions" ID="ID_1997337266" CREATED="1438113307426" MODIFIED="1438114061211">
+<node TEXT="section_type" ID="ID_1941968302" CREATED="1438113174254" MODIFIED="1438436532244">
 <font NAME="Dialog"/>
-<node TEXT="Same type and sub type (last will be the case if the section is new)." ID="ID_91580431" CREATED="1438113326866" MODIFIED="1438114061211">
+<node TEXT="Can be one of many types (see game design)." ID="ID_238860541" CREATED="1438113450418" MODIFIED="1438436532248">
 <font NAME="Dialog"/>
-</node>
-<node TEXT="???" ID="ID_1205544781" CREATED="1438113353186" MODIFIED="1438114061212">
-<icon BUILTIN="xmag"/>
+<node TEXT="Example: &quot;residential&quot;" ID="ID_783537156" CREATED="1438113462002" MODIFIED="1438436532247">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="The actual map is not respresented in this table." ID="ID_1092149346" CREATED="1438113205842" MODIFIED="1438114061213">
+<node TEXT="section_sub_type" ID="ID_533061983" CREATED="1438113174255" MODIFIED="1438436532257">
 <font NAME="Dialog"/>
+<node TEXT="Depends on type" ID="ID_269652817" CREATED="1438113474770" MODIFIED="1438436532261">
+<font NAME="Dialog"/>
+<node TEXT="Example: &quot;hut&quot;" ID="ID_731244302" CREATED="1438113499987" MODIFIED="1438436532260">
+<font NAME="Dialog"/>
+</node>
 </node>
 </node>
-<node TEXT="Columns" ID="ID_920050758" CREATED="1437304640033" MODIFIED="1438114061214">
+<node TEXT="section_position_x" ID="ID_87875981" CREATED="1438113174256" MODIFIED="1438436532269">
 <font NAME="Dialog"/>
-<node TEXT="city_section_id" ID="ID_1222802193" CREATED="1438113174250" MODIFIED="1438114061215">
+<node TEXT="X coordinate of this section" ID="ID_443833342" CREATED="1438113507138" MODIFIED="1438436532268">
 <font NAME="Dialog"/>
-<node TEXT="Identifying id (primay key)" ID="ID_1477392904" CREATED="1438114101107" MODIFIED="1438114125312"/>
 </node>
-<node TEXT="city_id" ID="ID_1775845045" CREATED="1438113174250" MODIFIED="1438114061216">
+</node>
+<node TEXT="section_position_y" ID="ID_473747020" CREATED="1438113174257" MODIFIED="1438436532278">
 <font NAME="Dialog"/>
-<node TEXT="Connection to city_data table" ID="ID_512145443" CREATED="1438113430866" MODIFIED="1438114061217">
+<node TEXT="Y coordinate of this section" ID="ID_1325014844" CREATED="1438113528162" MODIFIED="1438436532277">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="lot_id" ID="ID_1011749811" CREATED="1438113174253" MODIFIED="1438114061218">
+<node TEXT="section_position_z" ID="ID_1317922231" CREATED="1438113174258" MODIFIED="1438436532287">
 <font NAME="Dialog"/>
-<node TEXT="Connection to city_lots" ID="ID_468138173" CREATED="1438113437138" MODIFIED="1438114061219">
+<node TEXT="Z coordinate of this section" ID="ID_754508553" CREATED="1438113568323" MODIFIED="1438436532286">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="section_type" ID="ID_1941968302" CREATED="1438113174254" MODIFIED="1438114061222">
-<font NAME="Dialog"/>
-<node TEXT="Can be one of many types (see game design)." ID="ID_238860541" CREATED="1438113450418" MODIFIED="1438114061223">
+<node TEXT="section_neighbour_west_id" ID="ID_1329730449" CREATED="1438113174259" MODIFIED="1438436532295">
 <font NAME="Dialog"/>
-<node TEXT="Example: &quot;residential&quot;" ID="ID_783537156" CREATED="1438113462002" MODIFIED="1438114061224">
+<node TEXT="Connected section to the west of this section" ID="ID_203288487" CREATED="1438113574035" MODIFIED="1438436532294">
 <font NAME="Dialog"/>
 </node>
 </node>
-</node>
-<node TEXT="section_sub_type" ID="ID_533061983" CREATED="1438113174255" MODIFIED="1438114061224">
-<font NAME="Dialog"/>
-<node TEXT="Depends on type" ID="ID_269652817" CREATED="1438113474770" MODIFIED="1438114061225">
+<node TEXT="section_neighbour_east_id" ID="ID_540271626" CREATED="1438113174260" MODIFIED="1438436532303">
 <font NAME="Dialog"/>
-<node TEXT="Example: &quot;hut&quot;" ID="ID_731244302" CREATED="1438113499987" MODIFIED="1438114061226">
+<node TEXT="Connected section to the east of this section" ID="ID_1831814111" CREATED="1438113589571" MODIFIED="1438436532302">
 <font NAME="Dialog"/>
 </node>
 </node>
-</node>
-<node TEXT="section_position_x" ID="ID_87875981" CREATED="1438113174256" MODIFIED="1438114061227">
+<node TEXT="section_neighbour_north_id" ID="ID_1437928852" CREATED="1438113174260" MODIFIED="1438436532311">
 <font NAME="Dialog"/>
-<node TEXT="X coordinate of this section" ID="ID_443833342" CREATED="1438113507138" MODIFIED="1438114061228">
+<node TEXT="Connected section to the north of this section" ID="ID_638629658" CREATED="1438113597347" MODIFIED="1438436532310">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="section_position_y" ID="ID_473747020" CREATED="1438113174257" MODIFIED="1438114061229">
+<node TEXT="section_neighbour_south_id" ID="ID_540211362" CREATED="1438113174261" MODIFIED="1438436532318">
 <font NAME="Dialog"/>
-<node TEXT="Y coordinate of this section" ID="ID_1325014844" CREATED="1438113528162" MODIFIED="1438114061230">
+<node TEXT="Connected section to the south of this section" ID="ID_197703863" CREATED="1438113603955" MODIFIED="1438436532317">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="section_position_z" ID="ID_1317922231" CREATED="1438113174258" MODIFIED="1438114061231">
+<node TEXT="section_neighbour_up_id" ID="ID_343326011" CREATED="1438113174262" MODIFIED="1438436532325">
 <font NAME="Dialog"/>
-<node TEXT="Z coordinate of this section" ID="ID_754508553" CREATED="1438113568323" MODIFIED="1438114061232">
+<node TEXT="Connected section above this section" ID="ID_597395527" CREATED="1438113624915" MODIFIED="1438436532324">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="section_neighbour_west_id" ID="ID_1329730449" CREATED="1438113174259" MODIFIED="1438114061232">
+<node TEXT="section_neighbour_down_id" ID="ID_1799928879" CREATED="1438113174263" MODIFIED="1438436532332">
 <font NAME="Dialog"/>
-<node TEXT="Connected section to the west of this section" ID="ID_203288487" CREATED="1438113574035" MODIFIED="1438114061233">
+<node TEXT="Connected section below this section" ID="ID_179088634" CREATED="1438113634707" MODIFIED="1438436532331">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="section_neighbour_east_id" ID="ID_540271626" CREATED="1438113174260" MODIFIED="1438114061234">
+<node TEXT="section_reserved" ID="ID_1661189723" CREATED="1438113174264" MODIFIED="1438436532339">
 <font NAME="Dialog"/>
-<node TEXT="Connected section to the east of this section" ID="ID_1831814111" CREATED="1438113589571" MODIFIED="1438114061235">
+<node TEXT="Whether this section is only reserved or available" ID="ID_639965912" CREATED="1438113665971" MODIFIED="1438436532338">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="section_neighbour_north_id" ID="ID_1437928852" CREATED="1438113174260" MODIFIED="1438114061236">
+</node>
+</node>
+<node TEXT="Table &apos;city_lots&apos;" ID="ID_186566294" CREATED="1438436005105" MODIFIED="1438436532149">
+<font BOLD="false"/>
+<node TEXT="General" ID="ID_1200538931" CREATED="1437303004879" MODIFIED="1438436532142">
 <font NAME="Dialog"/>
-<node TEXT="Connected section to the north of this section" ID="ID_638629658" CREATED="1438113597347" MODIFIED="1438114061237">
+<node TEXT="Lot data" ID="ID_1858229174" CREATED="1438439673924" MODIFIED="1438439682768">
+<node TEXT="Linked city and (optional) district" ID="ID_1704058229" CREATED="1438439684164" MODIFIED="1438439704000"/>
+</node>
+</node>
+<node TEXT="Columns" ID="ID_1763735974" CREATED="1437304643025" MODIFIED="1438436532160">
 <font NAME="Dialog"/>
+<node TEXT="lot_id" ID="ID_459753159" CREATED="1438436025697" MODIFIED="1438436532156">
+<node TEXT="Identifying id (primary key)" ID="ID_1621393911" CREATED="1438436040625" MODIFIED="1438436532155"/>
+</node>
+<node TEXT="city_id" ID="ID_1509702002" CREATED="1438436029617" MODIFIED="1438436532163">
+<node TEXT="Connection to city_data table" ID="ID_1529026378" CREATED="1438436052225" MODIFIED="1438436532162"/>
+</node>
+<node TEXT="district_id" ID="ID_1605434035" CREATED="1438439712916" MODIFIED="1438439717264">
+<node TEXT="Connection to city_destricts table" ID="ID_813482884" CREATED="1438439717988" MODIFIED="1438439730416"/>
+</node>
 </node>
 </node>
-<node TEXT="section_neighbour_south_id" ID="ID_540211362" CREATED="1438113174261" MODIFIED="1438114061238">
+<node TEXT="Table &apos;city_districts&apos;" ID="ID_1850555615" CREATED="1438439736452" MODIFIED="1438439742544">
+<node TEXT="General" ID="ID_1629758430" CREATED="1437303004879" MODIFIED="1438436532383">
 <font NAME="Dialog"/>
-<node TEXT="Connected section to the south of this section" ID="ID_197703863" CREATED="1438113603955" MODIFIED="1438114061239">
+</node>
+<node TEXT="Columns" ID="ID_793997553" CREATED="1437304643025" MODIFIED="1438436532386">
 <font NAME="Dialog"/>
+<node TEXT="district_id" ID="ID_1671532032" CREATED="1438439753252" MODIFIED="1438439757376">
+<node TEXT="Identifying id (primary key)" ID="ID_659528965" CREATED="1438436040625" MODIFIED="1438436532155"/>
+</node>
+<node TEXT="city_id" ID="ID_1801661880" CREATED="1438436029617" MODIFIED="1438436532163">
+<node TEXT="Connection to city_data table" ID="ID_77662701" CREATED="1438436052225" MODIFIED="1438436532162"/>
+</node>
 </node>
 </node>
-<node TEXT="section_neighbour_up_id" ID="ID_343326011" CREATED="1438113174262" MODIFIED="1438114061239">
+<node TEXT="Table &apos;city_data&apos;" ID="ID_1517130846" CREATED="1437302960255" MODIFIED="1438436532113">
+<font NAME="Dialog" BOLD="false"/>
+<node TEXT="General" ID="ID_1679802479" CREATED="1437303004879" MODIFIED="1438436532099">
 <font NAME="Dialog"/>
-<node TEXT="Connected section above this section" ID="ID_597395527" CREATED="1438113624915" MODIFIED="1438114061240">
+<node TEXT="General city data" ID="ID_165551090" CREATED="1437303018975" MODIFIED="1438436532110">
+<font NAME="Dialog"/>
+<node TEXT="Name of city" ID="ID_923685594" CREATED="1437303067567" MODIFIED="1438436532101">
 <font NAME="Dialog"/>
 </node>
-</node>
-<node TEXT="section_neighbour_down_id" ID="ID_1799928879" CREATED="1438113174263" MODIFIED="1438114061241">
+<node TEXT="Linked user profile" ID="ID_939423900" CREATED="1437303071119" MODIFIED="1438436532105">
 <font NAME="Dialog"/>
-<node TEXT="Connected section below this section" ID="ID_179088634" CREATED="1438113634707" MODIFIED="1438114061242">
+</node>
+<node TEXT="Linked region" ID="ID_568383767" CREATED="1437303513553" MODIFIED="1438436532109">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="section_reserved" ID="ID_1661189723" CREATED="1438113174264" MODIFIED="1438114061243">
+</node>
+<node TEXT="Columns" ID="ID_7311076" CREATED="1437303337311" MODIFIED="1438436532134">
 <font NAME="Dialog"/>
-<node TEXT="Whether this section is only reserved or available" ID="ID_639965912" CREATED="1438113665971" MODIFIED="1438114061243">
+<node TEXT="city_id" ID="ID_94440353" CREATED="1437303421119" MODIFIED="1438436532118">
 <font NAME="Dialog"/>
 </node>
+<node TEXT="city_mode" ID="ID_1714851680" CREATED="1437303423807" MODIFIED="1438436532122">
+<font NAME="Dialog"/>
 </node>
+<node TEXT="city_name" ID="ID_442480951" CREATED="1437303428351" MODIFIED="1438436532126">
+<font NAME="Dialog"/>
 </node>
+<node TEXT="city_user_id" ID="ID_1451478104" CREATED="1437303435967" MODIFIED="1438436532130">
+<font NAME="Dialog"/>
 </node>
-<node TEXT="Table &apos;region_data&apos;" ID="ID_565474444" CREATED="1437302987199" MODIFIED="1438114061244">
+<node TEXT="city_region_id" ID="ID_1079814383" CREATED="1437303439983" MODIFIED="1438436532133">
 <font NAME="Dialog"/>
-<node TEXT="General" ID="ID_167479682" CREATED="1437303004879" MODIFIED="1438114061245">
+</node>
+</node>
+</node>
+<node TEXT="Table &apos;region_data&apos;" ID="ID_565474444" CREATED="1437302987199" MODIFIED="1438436532370">
+<font NAME="Dialog" BOLD="false"/>
+<node TEXT="General" ID="ID_167479682" CREATED="1437303004879" MODIFIED="1438436532360">
 <font NAME="Dialog"/>
-<node TEXT="General region data" ID="ID_1640925370" CREATED="1437303053807" MODIFIED="1438114061246">
+<node TEXT="General region data" ID="ID_1640925370" CREATED="1437303053807" MODIFIED="1438436532349">
 <font NAME="Dialog"/>
-<node TEXT="Name of region" ID="ID_1834246483" CREATED="1437303077823" MODIFIED="1438114061247">
+<node TEXT="Name of region" ID="ID_1834246483" CREATED="1437303077823" MODIFIED="1438436532348">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="For the first city, a general region is created" ID="ID_1143661581" CREATED="1437303176943" MODIFIED="1438114061248">
+<node TEXT="For the first city, a general region is created" ID="ID_1143661581" CREATED="1437303176943" MODIFIED="1438436532352">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="All regions can later be named, cities re-assigned" ID="ID_1080582875" CREATED="1437303195487" MODIFIED="1438114061248">
+<node TEXT="All regions can later be named, cities re-assigned" ID="ID_1080582875" CREATED="1437303195487" MODIFIED="1438436532356">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Regions can be connected with each other" ID="ID_1095689306" CREATED="1437303212111" MODIFIED="1438114061249">
+<node TEXT="Regions can be connected with each other" ID="ID_1095689306" CREATED="1437303212111" MODIFIED="1438436532367">
 <font NAME="Dialog"/>
-<node TEXT="Between same player" ID="ID_1019502100" CREATED="1437303228095" MODIFIED="1438114061250">
+<node TEXT="Between same player" ID="ID_1019502100" CREATED="1437303228095" MODIFIED="1438436532362">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Also between different players" ID="ID_127376079" CREATED="1437303234255" MODIFIED="1438114061251">
+<node TEXT="Also between different players" ID="ID_127376079" CREATED="1437303234255" MODIFIED="1438436532366">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Columns" ID="ID_1390154516" CREATED="1437303449135" MODIFIED="1438114061252">
+<node TEXT="Columns" ID="ID_1390154516" CREATED="1437303449135" MODIFIED="1438436532380">
 <font NAME="Dialog"/>
-<node TEXT="region_id" ID="ID_629426834" CREATED="1437303521375" MODIFIED="1438114061253">
+<node TEXT="region_id" ID="ID_629426834" CREATED="1437303521375" MODIFIED="1438436532373">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="region_name" ID="ID_1676849001" CREATED="1437303528831" MODIFIED="1438114061253">
+<node TEXT="region_name" ID="ID_1676849001" CREATED="1437303528831" MODIFIED="1438436532376">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="region_user_id" ID="ID_539795794" CREATED="1437303531599" MODIFIED="1438114061254">
+<node TEXT="region_user_id" ID="ID_539795794" CREATED="1437303531599" MODIFIED="1438436532379">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Table &apos;region_map&apos;" ID="ID_954622789" CREATED="1437302993295" MODIFIED="1438114061255">
-<font NAME="Dialog"/>
-<node TEXT="General" ID="ID_1626312098" CREATED="1437303004879" MODIFIED="1438114061256">
+<node TEXT="Table &apos;region_map&apos;" ID="ID_954622789" CREATED="1437302993295" MODIFIED="1438436532387">
+<font NAME="Dialog" BOLD="false"/>
+<node TEXT="General" ID="ID_1626312098" CREATED="1437303004879" MODIFIED="1438436532383">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Columns" ID="ID_374773647" CREATED="1437304643025" MODIFIED="1438114061257">
+<node TEXT="Columns" ID="ID_374773647" CREATED="1437304643025" MODIFIED="1438436532386">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Game logic/design" POSITION="left" ID="ID_782475028" CREATED="1434012713594" MODIFIED="1438114061258">
+<node TEXT="Game logic/design" POSITION="left" ID="ID_782475028" CREATED="1434012713594" MODIFIED="1438436534196">
 <edge COLOR="#00ff00"/>
 <font NAME="Dialog" SIZE="16" BOLD="true"/>
-<node TEXT="City growth" ID="ID_1145691200" CREATED="1434012897227" MODIFIED="1438114061258">
+<node TEXT="City growth" ID="ID_1145691200" CREATED="1434012897227" MODIFIED="1438436532574">
 <font NAME="Dialog" SIZE="12" BOLD="true"/>
-<node TEXT="Population growth" ID="ID_1223991776" CREATED="1434019738833" MODIFIED="1438114061259">
+<node TEXT="Population growth" ID="ID_1223991776" CREATED="1434019738833" MODIFIED="1438436532565">
 <font NAME="Dialog"/>
-<node TEXT="Player can not directly influence this" ID="ID_1847195403" CREATED="1434013763019" MODIFIED="1438114061260">
+<node TEXT="Player can not directly influence this" ID="ID_1847195403" CREATED="1434013763019" MODIFIED="1438436532406">
 <font NAME="Dialog"/>
-<node TEXT="Player cannot add x citizens to a household" ID="ID_263786869" CREATED="1434013829403" MODIFIED="1438114061261">
+<node TEXT="Player cannot add x citizens to a household" ID="ID_263786869" CREATED="1434013829403" MODIFIED="1438436532405">
 <icon BUILTIN="messagebox_warning"/>
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Citizens migrate from outside" ID="ID_323078231" CREATED="1434013750075" MODIFIED="1438114061262">
+<node TEXT="Citizens migrate from outside" ID="ID_323078231" CREATED="1434013750075" MODIFIED="1438436532431">
 <font NAME="Dialog"/>
-<node TEXT="Need a place to start their household" ID="ID_1071729623" CREATED="1434013895627" MODIFIED="1438114061263">
+<node TEXT="Need a place to start their household" ID="ID_1071729623" CREATED="1434013895627" MODIFIED="1438436532414">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Need a path connection to residental zones" ID="ID_1263416002" CREATED="1434013927499" MODIFIED="1438114061264">
+<node TEXT="Need a path connection to residental zones" ID="ID_1263416002" CREATED="1434013927499" MODIFIED="1438436532418">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Start with a simple household consisting of one person" ID="ID_183187180" CREATED="1434015050972" MODIFIED="1438114061265">
+<node TEXT="Start with a simple household consisting of one person" ID="ID_183187180" CREATED="1434015050972" MODIFIED="1438436532423">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Need some kind of water supply" ID="ID_1212039238" CREATED="1434015487693" MODIFIED="1438114061266">
+<node TEXT="Need some kind of water supply" ID="ID_1212039238" CREATED="1434015487693" MODIFIED="1438436532427">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_1936324136" STARTINCLINATION="3145;0;" ENDINCLINATION="3145;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
-<node TEXT="Somehow hunt for their food" ID="ID_1838873938" CREATED="1434015095804" MODIFIED="1438114061266">
+<node TEXT="Somehow hunt for their food" ID="ID_1838873938" CREATED="1434015095804" MODIFIED="1438436532439">
 <font NAME="Dialog"/>
-<node TEXT="This may change in the future as demands grow" ID="ID_1014359316" CREATED="1434015104812" MODIFIED="1438114061267">
+<node TEXT="This may change in the future as demands grow" ID="ID_1014359316" CREATED="1434015104812" MODIFIED="1438436532434">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Player doesn&apos;t need to care about citizens to start hunting" ID="ID_1169611598" CREATED="1434015127036" MODIFIED="1438114061268">
+<node TEXT="Player doesn&apos;t need to care about citizens to start hunting" ID="ID_1169611598" CREATED="1434015127036" MODIFIED="1438436532442">
 <font NAME="Dialog"/>
-<node TEXT="But later on must take care of" ID="ID_516177125" CREATED="1434015144924" MODIFIED="1438114061269">
+<node TEXT="But later on must take care of" ID="ID_516177125" CREATED="1434015144924" MODIFIED="1438436532441">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
 </node>
-<node TEXT="Citizens may migrate away" ID="ID_1652524362" CREATED="1434043185144" MODIFIED="1438114061270">
+<node TEXT="Citizens may migrate away" ID="ID_1652524362" CREATED="1434043185144" MODIFIED="1438436532449">
 <font NAME="Dialog"/>
-<node TEXT="Happiness is to low" ID="ID_1694034918" CREATED="1434043210423" MODIFIED="1438114061271">
+<node TEXT="Happiness is to low" ID="ID_1694034918" CREATED="1434043210423" MODIFIED="1438436532448">
 <icon BUILTIN="messagebox_warning"/>
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Depends on age" ID="ID_34748709" CREATED="1434040389508" MODIFIED="1438114061271">
+<node TEXT="Depends on age" ID="ID_34748709" CREATED="1434040389508" MODIFIED="1438436532528">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_606592711" STARTINCLINATION="6481;0;" ENDINCLINATION="6481;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
-<node TEXT="Baby" ID="ID_756218116" CREATED="1434041666550" MODIFIED="1438114061272">
+<node TEXT="Baby" ID="ID_756218116" CREATED="1434041666550" MODIFIED="1438436532461">
 <font NAME="Dialog"/>
-<node TEXT="0% chance" ID="ID_955885733" CREATED="1434041678390" MODIFIED="1438114061273">
+<node TEXT="0% chance" ID="ID_955885733" CREATED="1434041678390" MODIFIED="1438436532460">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Child" ID="ID_1088001035" CREATED="1434041682726" MODIFIED="1438114061274">
+<node TEXT="Child" ID="ID_1088001035" CREATED="1434041682726" MODIFIED="1438436532470">
 <font NAME="Dialog"/>
-<node TEXT="0% chance" ID="ID_98174675" CREATED="1434041686470" MODIFIED="1438114061275">
+<node TEXT="0% chance" ID="ID_98174675" CREATED="1434041686470" MODIFIED="1438436532468">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Young adult" ID="ID_1137127310" CREATED="1434041689622" MODIFIED="1438114061276">
+<node TEXT="Young adult" ID="ID_1137127310" CREATED="1434041689622" MODIFIED="1438436532485">
 <font NAME="Dialog"/>
-<node TEXT="Depend on education" ID="ID_641423905" CREATED="1434041712662" MODIFIED="1438114061277">
+<node TEXT="Depend on education" ID="ID_641423905" CREATED="1434041712662" MODIFIED="1438436532476">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Depends on household members" ID="ID_1086871199" CREATED="1434041726870" MODIFIED="1438114061278">
+<node TEXT="Depends on household members" ID="ID_1086871199" CREATED="1434041726870" MODIFIED="1438436532480">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Low chance (youth pregancy)" ID="ID_48937365" CREATED="1434041910998" MODIFIED="1438114061278">
+<node TEXT="Low chance (youth pregancy)" ID="ID_48937365" CREATED="1434041910998" MODIFIED="1438436532489">
 <font NAME="Dialog"/>
-<node TEXT="Influenced by sex education" ID="ID_1663386218" CREATED="1434042826295" MODIFIED="1438114061279">
+<node TEXT="Influenced by sex education" ID="ID_1663386218" CREATED="1434042826295" MODIFIED="1438436532487">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_964741313" STARTINCLINATION="358;0;" ENDINCLINATION="358;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
 </node>
 </node>
-<node TEXT="Adult" ID="ID_1203271761" CREATED="1434041694006" MODIFIED="1438114061280">
+<node TEXT="Adult" ID="ID_1203271761" CREATED="1434041694006" MODIFIED="1438436532504">
 <font NAME="Dialog"/>
-<node TEXT="Depend on education" ID="ID_847313431" CREATED="1434041722486" MODIFIED="1438114061281">
+<node TEXT="Depend on education" ID="ID_847313431" CREATED="1434041722486" MODIFIED="1438436532495">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Depends on household members" ID="ID_882713987" CREATED="1434041751126" MODIFIED="1438114061282">
+<node TEXT="Depends on household members" ID="ID_882713987" CREATED="1434041751126" MODIFIED="1438436532499">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Regular age for pregnancy" ID="ID_394452892" CREATED="1434041922534" MODIFIED="1438114061283">
+<node TEXT="Regular age for pregnancy" ID="ID_394452892" CREATED="1434041922534" MODIFIED="1438436532503">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Mature" ID="ID_877106687" CREATED="1434041697942" MODIFIED="1438114061283">
+<node TEXT="Mature" ID="ID_877106687" CREATED="1434041697942" MODIFIED="1438436532518">
 <font NAME="Dialog"/>
-<node TEXT="Depend on education" ID="ID_1592565691" CREATED="1434041722486" MODIFIED="1438114061284">
+<node TEXT="Depend on education" ID="ID_1592565691" CREATED="1434041722486" MODIFIED="1438436532510">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Depends on household members" ID="ID_386490546" CREATED="1434041751126" MODIFIED="1438114061285">
+<node TEXT="Depends on household members" ID="ID_386490546" CREATED="1434041751126" MODIFIED="1438436532513">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Lowered chance (compared to adult)" ID="ID_900738315" CREATED="1434041931734" MODIFIED="1438114061286">
+<node TEXT="Lowered chance (compared to adult)" ID="ID_900738315" CREATED="1434041931734" MODIFIED="1438436532517">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Senior" ID="ID_733731281" CREATED="1434041701174" MODIFIED="1438114061287">
+<node TEXT="Senior" ID="ID_733731281" CREATED="1434041701174" MODIFIED="1438436532525">
 <font NAME="Dialog"/>
-<node TEXT="0% chance" ID="ID_763611051" CREATED="1434041710278" MODIFIED="1438114061288">
+<node TEXT="0% chance" ID="ID_763611051" CREATED="1434041710278" MODIFIED="1438436532524">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Dead" ID="ID_261718866" CREATED="1434041703238" MODIFIED="1438114061288">
+<node TEXT="Dead" ID="ID_261718866" CREATED="1434041703238" MODIFIED="1438436532531">
 <font NAME="Dialog"/>
-<node TEXT="0% chance" ID="ID_1632186345" CREATED="1434041705846" MODIFIED="1438114061289">
+<node TEXT="0% chance" ID="ID_1632186345" CREATED="1434041705846" MODIFIED="1438436532530">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Depends on education" ID="ID_1215578310" CREATED="1434042007462" MODIFIED="1438114061290">
+<node TEXT="Depends on education" ID="ID_1215578310" CREATED="1434042007462" MODIFIED="1438436532538">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_331881607" STARTINCLINATION="5608;0;" ENDINCLINATION="5608;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_1806757282" STARTINCLINATION="4576;0;" ENDINCLINATION="4576;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
-<node TEXT="Sex education?" ID="ID_964741313" CREATED="1434042408630" MODIFIED="1438114061291">
+<node TEXT="Sex education?" ID="ID_964741313" CREATED="1434042408630" MODIFIED="1438436532537">
 <icon BUILTIN="help"/>
 <icon BUILTIN="idea"/>
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Depends on happiness" ID="ID_1656272295" CREATED="1434042019622" MODIFIED="1438114061292">
+<node TEXT="Depends on happiness" ID="ID_1656272295" CREATED="1434042019622" MODIFIED="1438436532551">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_88101134" STARTINCLINATION="6136;0;" ENDINCLINATION="6136;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
-<node TEXT="Happier citizens reproduce often" ID="ID_383081288" CREATED="1434042444438" MODIFIED="1438114061293">
+<node TEXT="Happier citizens reproduce often" ID="ID_383081288" CREATED="1434042444438" MODIFIED="1438436532544">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Unhappy citizens may not reproduce" ID="ID_1767432036" CREATED="1434042453494" MODIFIED="1438114061294">
+<node TEXT="Unhappy citizens may not reproduce" ID="ID_1767432036" CREATED="1434042453494" MODIFIED="1438436532550">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="May depend on income" ID="ID_699273375" CREATED="1434042435126" MODIFIED="1438114061294">
+<node TEXT="May depend on income" ID="ID_699273375" CREATED="1434042435126" MODIFIED="1438436532562">
 <font NAME="Dialog"/>
-<node TEXT="Poor citizens require larger household maintaining upkeep" ID="ID_1656273999" CREATED="1434042462662" MODIFIED="1438114061295">
+<node TEXT="Poor citizens require larger household maintaining upkeep" ID="ID_1656273999" CREATED="1434042462662" MODIFIED="1438436532557">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Rich citizens may not require large household" ID="ID_887313829" CREATED="1434042483830" MODIFIED="1438114061296">
+<node TEXT="Rich citizens may not require large household" ID="ID_887313829" CREATED="1434042483830" MODIFIED="1438436532561">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Depends on health care" ID="ID_1907214542" CREATED="1434042568278" MODIFIED="1438114061297">
+<node TEXT="Depends on health care" ID="ID_1907214542" CREATED="1434042568278" MODIFIED="1438436532571">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_150347791" STARTINCLINATION="5107;0;" ENDINCLINATION="5107;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
-<node TEXT="Healther citizens have longer life" ID="ID_1772475518" CREATED="1434042635191" MODIFIED="1438114061298">
+<node TEXT="Healther citizens have longer life" ID="ID_1772475518" CREATED="1434042635191" MODIFIED="1438436532567">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Unhealthy citizens die earlier" ID="ID_1750897295" CREATED="1434042685655" MODIFIED="1438114061299">
+<node TEXT="Unhealthy citizens die earlier" ID="ID_1750897295" CREATED="1434042685655" MODIFIED="1438436532570">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Building growth" ID="ID_1635068739" CREATED="1434019745345" MODIFIED="1438114061299">
+<node TEXT="Building growth" ID="ID_1635068739" CREATED="1434019745345" MODIFIED="1438436532636">
 <font NAME="Dialog"/>
-<node TEXT="Can be influenced by player" ID="ID_544401620" CREATED="1434039504707" MODIFIED="1438114061300">
+<node TEXT="Can be influenced by player" ID="ID_544401620" CREATED="1434039504707" MODIFIED="1438436532600">
 <font NAME="Dialog"/>
-<node TEXT="Population density" ID="ID_1326041198" CREATED="1434039512116" MODIFIED="1438114061301">
+<node TEXT="Population density" ID="ID_1326041198" CREATED="1434039512116" MODIFIED="1438436532581">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Zone size" ID="ID_831626793" CREATED="1434039800468" MODIFIED="1438114061302">
+<node TEXT="Zone size" ID="ID_831626793" CREATED="1434039800468" MODIFIED="1438436532585">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Education" ID="ID_1460354320" CREATED="1434040273588" MODIFIED="1438114061303">
+<node TEXT="Education" ID="ID_1460354320" CREATED="1434040273588" MODIFIED="1438436532589">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Policies" ID="ID_999077734" CREATED="1434039539348" MODIFIED="1438114061304">
+<node TEXT="Policies" ID="ID_999077734" CREATED="1434039539348" MODIFIED="1438436532592">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_76932011" STARTINCLINATION="1335;0;" ENDINCLINATION="1335;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
-<node TEXT="Other zones/roads in effect area" ID="ID_309057432" CREATED="1434039919332" MODIFIED="1438114061305">
+<node TEXT="Other zones/roads in effect area" ID="ID_309057432" CREATED="1434039919332" MODIFIED="1438436532596">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Availability of public services" ID="ID_1350682782" CREATED="1434039946836" MODIFIED="1438114061306">
+<node TEXT="Availability of public services" ID="ID_1350682782" CREATED="1434039946836" MODIFIED="1438436532616">
 <font NAME="Dialog"/>
-<node TEXT="Public transportation" ID="ID_1772502313" CREATED="1434039970420" MODIFIED="1438114061306">
+<node TEXT="Public transportation" ID="ID_1772502313" CREATED="1434039970420" MODIFIED="1438436532602">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Police" ID="ID_492789517" CREATED="1434039977796" MODIFIED="1438114061307">
+<node TEXT="Police" ID="ID_492789517" CREATED="1434039977796" MODIFIED="1438436532606">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Firebrigade" ID="ID_251173511" CREATED="1434039979748" MODIFIED="1438114061308">
+<node TEXT="Firebrigade" ID="ID_251173511" CREATED="1434039979748" MODIFIED="1438436532609">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Health care" ID="ID_1996132095" CREATED="1434039983620" MODIFIED="1438114061309">
+<node TEXT="Health care" ID="ID_1996132095" CREATED="1434039983620" MODIFIED="1438436532612">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Death care" ID="ID_3541459" CREATED="1434039986628" MODIFIED="1438114061310">
+<node TEXT="Death care" ID="ID_3541459" CREATED="1434039986628" MODIFIED="1438436532615">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Depends on number of households and their sizes" ID="ID_1350364442" CREATED="1434039558740" MODIFIED="1438114061311">
+<node TEXT="Depends on number of households and their sizes" ID="ID_1350364442" CREATED="1434039558740" MODIFIED="1438436532623">
 <font NAME="Dialog"/>
-<node TEXT="Residential only" ID="ID_248841150" CREATED="1434039891172" MODIFIED="1438114061311">
+<node TEXT="Residential only" ID="ID_248841150" CREATED="1434039891172" MODIFIED="1438436532622">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Depends on demand" ID="ID_1412790223" CREATED="1434039596052" MODIFIED="1438114061312">
+<node TEXT="Depends on demand" ID="ID_1412790223" CREATED="1434039596052" MODIFIED="1438436532633">
 <font NAME="Dialog"/>
-<node TEXT="Passenger volume in transportation" ID="ID_1874656555" CREATED="1434040038357" MODIFIED="1438114061313">
+<node TEXT="Passenger volume in transportation" ID="ID_1874656555" CREATED="1434040038357" MODIFIED="1438436532628">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Cargo demand (industry, commercial)" ID="ID_373271548" CREATED="1434040048468" MODIFIED="1438114061314">
+<node TEXT="Cargo demand (industry, commercial)" ID="ID_373271548" CREATED="1434040048468" MODIFIED="1438436532631">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Educational level" ID="ID_799028920" CREATED="1434040091892" MODIFIED="1438114061315">
+<node TEXT="Educational level" ID="ID_799028920" CREATED="1434040091892" MODIFIED="1438436532635">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_431123105" STARTINCLINATION="4418;0;" ENDINCLINATION="4418;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
 </node>
 </node>
-<node TEXT="City management / construction" ID="ID_1936311174" CREATED="1434012902122" MODIFIED="1438114061316">
+<node TEXT="City management / construction" ID="ID_1936311174" CREATED="1434012902122" MODIFIED="1438436533979">
 <font NAME="Dialog" SIZE="12" BOLD="true"/>
-<node TEXT="Zones" ID="ID_949584626" CREATED="1434013953003" MODIFIED="1438114061316">
+<node TEXT="Zones" ID="ID_949584626" CREATED="1434013953003" MODIFIED="1438436532976">
 <font NAME="Dialog"/>
-<node TEXT="General" ID="ID_287830000" CREATED="1434020080497" MODIFIED="1438114061317">
+<node TEXT="General" ID="ID_287830000" CREATED="1434020080497" MODIFIED="1438436532714">
 <font NAME="Dialog"/>
-<node TEXT="Have minimum size individualy" ID="ID_488386508" CREATED="1434020083473" MODIFIED="1438114061319">
+<node TEXT="Have minimum size individualy" ID="ID_488386508" CREATED="1434020083473" MODIFIED="1438436532650">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="May have different types" ID="ID_131248841" CREATED="1434020287569" MODIFIED="1438114061319">
+<node TEXT="May have different types" ID="ID_131248841" CREATED="1434020287569" MODIFIED="1438436532654">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Minimum education level" ID="ID_329973635" CREATED="1434021552690" MODIFIED="1438114061320">
+<node TEXT="Minimum education level" ID="ID_329973635" CREATED="1434021552690" MODIFIED="1438436532689">
 <font NAME="Dialog"/>
-<node TEXT="Upgrade always possible" ID="ID_1633444771" CREATED="1434020587217" MODIFIED="1438114061321">
+<node TEXT="Upgrade always possible" ID="ID_1633444771" CREATED="1434020587217" MODIFIED="1438436532676">
 <font NAME="Dialog"/>
-<node TEXT="Allows only higher educated citizen to aquire this" ID="ID_128197342" CREATED="1434021263458" MODIFIED="1438114061322">
+<node TEXT="Allows only higher educated citizen to aquire this" ID="ID_128197342" CREATED="1434021263458" MODIFIED="1438436532665">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Some kind of control where rich and poor people live" ID="ID_1541421811" CREATED="1434021279042" MODIFIED="1438114061323">
+<node TEXT="Some kind of control where rich and poor people live" ID="ID_1541421811" CREATED="1434021279042" MODIFIED="1438436532669">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Upgrade may become mandatory as demand change" ID="ID_843365129" CREATED="1434021292194" MODIFIED="1438114061324">
+<node TEXT="Upgrade may become mandatory as demand change" ID="ID_843365129" CREATED="1434021292194" MODIFIED="1438436532672">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="On start not all zone levels are available" ID="ID_455246660" CREATED="1434021343490" MODIFIED="1438114061325">
+<node TEXT="On start not all zone levels are available" ID="ID_455246660" CREATED="1434021343490" MODIFIED="1438436532675">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Downgrade NOT always possible" ID="ID_1567872865" CREATED="1434020596177" MODIFIED="1438114061325">
+<node TEXT="Downgrade NOT always possible" ID="ID_1567872865" CREATED="1434020596177" MODIFIED="1438436532685">
 <font NAME="Dialog"/>
-<node TEXT="E.g. high building must be partly demolished then" ID="ID_274428769" CREATED="1434020601233" MODIFIED="1438114061326">
+<node TEXT="E.g. high building must be partly demolished then" ID="ID_274428769" CREATED="1434020601233" MODIFIED="1438436532681">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="If no building is constructed, downgrade is still possible" ID="ID_1375438538" CREATED="1434021585368" MODIFIED="1438114061327">
+<node TEXT="If no building is constructed, downgrade is still possible" ID="ID_1375438538" CREATED="1434021585368" MODIFIED="1438436532684">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Income of citizen influence choice of zone" ID="ID_1721956353" CREATED="1434021770067" MODIFIED="1438114061328">
+<node TEXT="Income of citizen influence choice of zone" ID="ID_1721956353" CREATED="1434021770067" MODIFIED="1438436532698">
 <font NAME="Dialog"/>
-<node TEXT="Poor citizen cannot effort to live on high land value" ID="ID_663645247" CREATED="1434021809027" MODIFIED="1438114061329">
+<node TEXT="Poor citizen cannot effort to live on high land value" ID="ID_663645247" CREATED="1434021809027" MODIFIED="1438436532691">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Rich citizen only want to live on high land value" ID="ID_523503267" CREATED="1434021836403" MODIFIED="1438114061329">
+<node TEXT="Rich citizen only want to live on high land value" ID="ID_523503267" CREATED="1434021836403" MODIFIED="1438436532694">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Same for commercial (shopping), office and industry" ID="ID_909524501" CREATED="1434021851459" MODIFIED="1438114061330">
+<node TEXT="Same for commercial (shopping), office and industry" ID="ID_909524501" CREATED="1434021851459" MODIFIED="1438436532701">
 <font NAME="Dialog"/>
-<node TEXT="Rich people may work as a supervisor or boss" ID="ID_299547110" CREATED="1434021868627" MODIFIED="1438114061331">
+<node TEXT="Rich people may work as a supervisor or boss" ID="ID_299547110" CREATED="1434021868627" MODIFIED="1438436532700">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
 </node>
-<node TEXT="One zone is for one building only" ID="ID_516910774" CREATED="1434021016802" MODIFIED="1438114061332">
+<node TEXT="One zone is for one building only" ID="ID_516910774" CREATED="1434021016802" MODIFIED="1438436532711">
 <icon BUILTIN="messagebox_warning"/>
 <icon BUILTIN="idea"/>
 <font NAME="Dialog" BOLD="true"/>
-<node TEXT="Like a lot" ID="ID_1669481307" CREATED="1434021139618" MODIFIED="1438114061333">
+<node TEXT="Like a lot" ID="ID_1669481307" CREATED="1434021139618" MODIFIED="1438436532707">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Good pre-planing by player is maybe neeed" ID="ID_1799337665" CREATED="1434021147954" MODIFIED="1438114061334">
+<node TEXT="Good pre-planing by player is maybe neeed" ID="ID_1799337665" CREATED="1434021147954" MODIFIED="1438436532710">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Density" ID="ID_347180275" CREATED="1434020296833" MODIFIED="1438114061334">
+<node TEXT="Density" ID="ID_347180275" CREATED="1434020296833" MODIFIED="1438436532818">
 <font NAME="Dialog"/>
-<node TEXT="General" ID="ID_1450784664" CREATED="1434021407170" MODIFIED="1438114061335">
+<node TEXT="General" ID="ID_1450784664" CREATED="1434021407170" MODIFIED="1438436532732">
 <font NAME="Dialog"/>
-<node TEXT="Density level can be upgraded" ID="ID_1886962323" CREATED="1434021432194" MODIFIED="1438114061336">
+<node TEXT="Density level can be upgraded" ID="ID_1886962323" CREATED="1434021432194" MODIFIED="1438436532729">
 <font NAME="Dialog"/>
-<node TEXT="Will become mandatory as demand changes" ID="ID_134297499" CREATED="1434021441762" MODIFIED="1438114061337">
+<node TEXT="Will become mandatory as demand changes" ID="ID_134297499" CREATED="1434021441762" MODIFIED="1438436532724">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Combined with education level it allows some control where richt and poor live" ID="ID_1931027959" CREATED="1434021631475" MODIFIED="1438114061340">
+<node TEXT="Combined with education level it allows some control where richt and poor live" ID="ID_1931027959" CREATED="1434021631475" MODIFIED="1438436532728">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Land value can be influenced with parks/plazas" ID="ID_1642560116" CREATED="1434022291683" MODIFIED="1438114061343">
+<node TEXT="Land value can be influenced with parks/plazas" ID="ID_1642560116" CREATED="1434022291683" MODIFIED="1438436532731">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_283421216" STARTINCLINATION="720;0;" ENDINCLINATION="720;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
 </node>
-<node TEXT="Very low" ID="ID_1203776766" CREATED="1434020405857" MODIFIED="1438114061344">
+<node TEXT="Very low" ID="ID_1203776766" CREATED="1434020405857" MODIFIED="1438436532756">
 <font NAME="Dialog"/>
-<node TEXT="1 household only" ID="ID_1408009151" CREATED="1434020410193" MODIFIED="1438114061345">
+<node TEXT="1 household only" ID="ID_1408009151" CREATED="1434020410193" MODIFIED="1438436532738">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Small household size" ID="ID_496784602" CREATED="1434020414033" MODIFIED="1438114061345">
+<node TEXT="Small household size" ID="ID_496784602" CREATED="1434020414033" MODIFIED="1438436532741">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Rich citizen prefer this" ID="ID_1054426191" CREATED="1434020422387" MODIFIED="1438114061346">
+<node TEXT="Rich citizen prefer this" ID="ID_1054426191" CREATED="1434020422387" MODIFIED="1438436532753">
 <font NAME="Dialog"/>
-<node TEXT="Single house with own large garden" ID="ID_999219134" CREATED="1434020981922" MODIFIED="1438114061347">
+<node TEXT="Single house with own large garden" ID="ID_999219134" CREATED="1434020981922" MODIFIED="1438436532748">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Zone size must NOT be small" ID="ID_1377391731" CREATED="1434020991906" MODIFIED="1438114061348">
+<node TEXT="Zone size must NOT be small" ID="ID_1377391731" CREATED="1434020991906" MODIFIED="1438436532752">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Very high land value possible" ID="ID_1631393415" CREATED="1434020439361" MODIFIED="1438114061349">
+<node TEXT="Very high land value possible" ID="ID_1631393415" CREATED="1434020439361" MODIFIED="1438436532755">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Low" ID="ID_678265195" CREATED="1434020324065" MODIFIED="1438114061350">
+<node TEXT="Low" ID="ID_678265195" CREATED="1434020324065" MODIFIED="1438436532776">
 <font NAME="Dialog"/>
-<node TEXT="1 - 2 households" ID="ID_1553497182" CREATED="1434020345585" MODIFIED="1438114061350">
+<node TEXT="1 - 2 households" ID="ID_1553497182" CREATED="1434020345585" MODIFIED="1438436532762">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="All household sizes" ID="ID_1804163039" CREATED="1434020355809" MODIFIED="1438114061351">
+<node TEXT="All household sizes" ID="ID_1804163039" CREATED="1434020355809" MODIFIED="1438436532770">
 <font NAME="Dialog"/>
-<node TEXT="May depend on household&apos;s total income" ID="ID_721182628" CREATED="1434020745026" MODIFIED="1438114061352">
+<node TEXT="May depend on household&apos;s total income" ID="ID_721182628" CREATED="1434020745026" MODIFIED="1438436532769">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Rich citizen may live here (residential)" ID="ID_556920873" CREATED="1434020366705" MODIFIED="1438114061353">
+<node TEXT="Rich citizen may live here (residential)" ID="ID_556920873" CREATED="1434020366705" MODIFIED="1438436532772">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="High land value possible" ID="ID_1459847018" CREATED="1434020465233" MODIFIED="1438114061354">
+<node TEXT="High land value possible" ID="ID_1459847018" CREATED="1434020465233" MODIFIED="1438436532775">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Medium" ID="ID_949184346" CREATED="1434020327233" MODIFIED="1438114061355">
+<node TEXT="Medium" ID="ID_949184346" CREATED="1434020327233" MODIFIED="1438436532796">
 <font NAME="Dialog"/>
-<node TEXT="1 - x households" ID="ID_497933061" CREATED="1434020650433" MODIFIED="1438114061355">
+<node TEXT="1 - x households" ID="ID_497933061" CREATED="1434020650433" MODIFIED="1438436532782">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="All household sizes" ID="ID_526991310" CREATED="1434020708770" MODIFIED="1438114061356">
+<node TEXT="All household sizes" ID="ID_526991310" CREATED="1434020708770" MODIFIED="1438436532785">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="No rich citzens live here" ID="ID_1939103903" CREATED="1434020907346" MODIFIED="1438114061357">
+<node TEXT="No rich citzens live here" ID="ID_1939103903" CREATED="1434020907346" MODIFIED="1438436532793">
 <font NAME="Dialog"/>
-<node TEXT="To much neighbours" ID="ID_646710540" CREATED="1434022175315" MODIFIED="1438114061358">
+<node TEXT="To much neighbours" ID="ID_646710540" CREATED="1434022175315" MODIFIED="1438436532792">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Medium land value possible" ID="ID_1499229712" CREATED="1434022185539" MODIFIED="1438114061359">
+<node TEXT="Medium land value possible" ID="ID_1499229712" CREATED="1434022185539" MODIFIED="1438436532795">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="High" ID="ID_1398251909" CREATED="1434020330737" MODIFIED="1438114061360">
+<node TEXT="High" ID="ID_1398251909" CREATED="1434020330737" MODIFIED="1438436532815">
 <font NAME="Dialog"/>
-<node TEXT="1 - x households" ID="ID_1140576150" CREATED="1434022254883" MODIFIED="1438114061360">
+<node TEXT="1 - x households" ID="ID_1140576150" CREATED="1434022254883" MODIFIED="1438436532801">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="All household sizes" ID="ID_382575895" CREATED="1434020708770" MODIFIED="1438114061361">
+<node TEXT="All household sizes" ID="ID_382575895" CREATED="1434020708770" MODIFIED="1438436532805">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Only poor/average citzens live here" ID="ID_1256225138" CREATED="1434020907346" MODIFIED="1438114061362">
+<node TEXT="Only poor/average citzens live here" ID="ID_1256225138" CREATED="1434020907346" MODIFIED="1438436532812">
 <font NAME="Dialog"/>
-<node TEXT="To much neighbours" ID="ID_417438784" CREATED="1434022175315" MODIFIED="1438114061363">
+<node TEXT="To much neighbours" ID="ID_417438784" CREATED="1434022175315" MODIFIED="1438436532811">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Low land value possible" ID="ID_279162786" CREATED="1434022185539" MODIFIED="1438114061364">
+<node TEXT="Low land value possible" ID="ID_279162786" CREATED="1434022185539" MODIFIED="1438436532814">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Very high" ID="ID_1362724765" CREATED="1434020690706" MODIFIED="1438114061365">
+<node TEXT="Very high" ID="ID_1362724765" CREATED="1434020690706" MODIFIED="1438436532834">
 <font NAME="Dialog"/>
-<node TEXT="1 - x households" ID="ID_1417919412" CREATED="1434022254883" MODIFIED="1438114061365">
+<node TEXT="1 - x households" ID="ID_1417919412" CREATED="1434022254883" MODIFIED="1438436532821">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="All household sizes" ID="ID_1131616123" CREATED="1434020708770" MODIFIED="1438114061366">
+<node TEXT="All household sizes" ID="ID_1131616123" CREATED="1434020708770" MODIFIED="1438436532824">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Only poor citzens live here" ID="ID_1034965557" CREATED="1434020907346" MODIFIED="1438114061367">
+<node TEXT="Only poor citzens live here" ID="ID_1034965557" CREATED="1434020907346" MODIFIED="1438436532831">
 <font NAME="Dialog"/>
-<node TEXT="To much neighbours" ID="ID_1494288166" CREATED="1434022175315" MODIFIED="1438114061368">
+<node TEXT="To much neighbours" ID="ID_1494288166" CREATED="1434022175315" MODIFIED="1438436532830">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Very low land value possible" ID="ID_133572834" CREATED="1434022185539" MODIFIED="1438114061369">
+<node TEXT="Very low land value possible" ID="ID_133572834" CREATED="1434022185539" MODIFIED="1438436532833">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
 </node>
-<node TEXT="Residential" ID="ID_281315253" CREATED="1434019949761" MODIFIED="1438114061370">
+<node TEXT="Residential" ID="ID_281315253" CREATED="1434019949761" MODIFIED="1438436532837">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Commercial" ID="ID_1029980982" CREATED="1434019954609" MODIFIED="1438114061371">
+<node TEXT="Commercial" ID="ID_1029980982" CREATED="1434019954609" MODIFIED="1438436532842">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Industry" ID="ID_1744548569" CREATED="1434019958321" MODIFIED="1438114061372">
+<node TEXT="Industry" ID="ID_1744548569" CREATED="1434019958321" MODIFIED="1438436532847">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Office" ID="ID_881059724" CREATED="1434019962865" MODIFIED="1438114061373">
+<node TEXT="Office" ID="ID_881059724" CREATED="1434019962865" MODIFIED="1438436532851">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Education" ID="ID_1324377775" CREATED="1434019965489" MODIFIED="1438114061374">
+<node TEXT="Education" ID="ID_1324377775" CREATED="1434019965489" MODIFIED="1438436532855">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Public services" ID="ID_283421216" CREATED="1434019983281" MODIFIED="1438114061375">
+<node TEXT="Public services" ID="ID_283421216" CREATED="1434019983281" MODIFIED="1438436532876">
 <font NAME="Dialog"/>
-<node TEXT="Police" ID="ID_781629765" CREATED="1434019992609" MODIFIED="1438114061376">
+<node TEXT="Police" ID="ID_781629765" CREATED="1434019992609" MODIFIED="1438436532864">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Firebrigade" ID="ID_1612706235" CREATED="1434019995793" MODIFIED="1438114061377">
+<node TEXT="Firebrigade" ID="ID_1612706235" CREATED="1434019995793" MODIFIED="1438436532868">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Public transportation" ID="ID_69655172" CREATED="1434020003281" MODIFIED="1438114061378">
+<node TEXT="Public transportation" ID="ID_69655172" CREATED="1434020003281" MODIFIED="1438436532871">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_292276018" STARTINCLINATION="321;0;" ENDINCLINATION="321;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
-<node TEXT="Leisure" ID="ID_1141868591" CREATED="1434020176097" MODIFIED="1438114061378">
+<node TEXT="Leisure" ID="ID_1141868591" CREATED="1434020176097" MODIFIED="1438436532903">
 <font NAME="Dialog"/>
-<node TEXT="Public park" ID="ID_1442733940" CREATED="1434022309443" MODIFIED="1438114061379">
+<node TEXT="Public park" ID="ID_1442733940" CREATED="1434022309443" MODIFIED="1438436532879">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Plaza" ID="ID_1619868030" CREATED="1434022312275" MODIFIED="1438114061380">
+<node TEXT="Plaza" ID="ID_1619868030" CREATED="1434022312275" MODIFIED="1438436532882">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Public soccer field" ID="ID_1151692760" CREATED="1434022315171" MODIFIED="1438114061381">
+<node TEXT="Public soccer field" ID="ID_1151692760" CREATED="1434022315171" MODIFIED="1438436532886">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Public skating" ID="ID_111079177" CREATED="1434022324723" MODIFIED="1438114061382">
+<node TEXT="Public skating" ID="ID_111079177" CREATED="1434022324723" MODIFIED="1438436532889">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Golf course" ID="ID_746941235" CREATED="1434022356867" MODIFIED="1438114061383">
+<node TEXT="Golf course" ID="ID_746941235" CREATED="1434022356867" MODIFIED="1438436532893">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Zoo" ID="ID_1754766113" CREATED="1434024127205" MODIFIED="1438114061384">
+<node TEXT="Zoo" ID="ID_1754766113" CREATED="1434024127205" MODIFIED="1438436532896">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Swimming hall" ID="ID_159429495" CREATED="1434024353989" MODIFIED="1438114061385">
+<node TEXT="Swimming hall" ID="ID_159429495" CREATED="1434024353989" MODIFIED="1438436532899">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Theme park" ID="ID_1583064552" CREATED="1434024366021" MODIFIED="1438114061385">
+<node TEXT="Theme park" ID="ID_1583064552" CREATED="1434024366021" MODIFIED="1438436532902">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Garbage" ID="ID_1935375367" CREATED="1434020021585" MODIFIED="1438114061386">
+<node TEXT="Garbage" ID="ID_1935375367" CREATED="1434020021585" MODIFIED="1438436532906">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Public transportation" ID="ID_659489888" CREATED="1434025241702" MODIFIED="1438114061387">
+<node TEXT="Public transportation" ID="ID_659489888" CREATED="1434025241702" MODIFIED="1438436532942">
 <font NAME="Dialog"/>
-<node TEXT="Size of zone depends on type of transporation" ID="ID_139556974" CREATED="1434025286502" MODIFIED="1438114061388">
+<node TEXT="Size of zone depends on type of transporation" ID="ID_139556974" CREATED="1434025286502" MODIFIED="1438436532914">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Base buildings for bus/tram/train" ID="ID_1938954629" CREATED="1434025263926" MODIFIED="1438114061389">
+<node TEXT="Base buildings for bus/tram/train" ID="ID_1938954629" CREATED="1434025263926" MODIFIED="1438436532918">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Stops for taxi/bus/tram" ID="ID_857686959" CREATED="1434026476567" MODIFIED="1438114061390">
+<node TEXT="Stops for taxi/bus/tram" ID="ID_857686959" CREATED="1434026476567" MODIFIED="1438436532929">
 <font NAME="Dialog"/>
-<node TEXT="1x1 square only" ID="ID_185751943" CREATED="1434026494295" MODIFIED="1438114061391">
+<node TEXT="1x1 square only" ID="ID_185751943" CREATED="1434026494295" MODIFIED="1438436532925">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Must be placed for each side" ID="ID_911007677" CREATED="1434038382626" MODIFIED="1438114061392">
+<node TEXT="Must be placed for each side" ID="ID_911007677" CREATED="1434038382626" MODIFIED="1438436532928">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Train station" ID="ID_1540193248" CREATED="1434026500535" MODIFIED="1438114061392">
+<node TEXT="Train station" ID="ID_1540193248" CREATED="1434026500535" MODIFIED="1438436532939">
 <font NAME="Dialog"/>
-<node TEXT="Minimum 2x2 squares" ID="ID_1653230330" CREATED="1434026511639" MODIFIED="1438114061393">
+<node TEXT="Minimum 2x2 squares" ID="ID_1653230330" CREATED="1434026511639" MODIFIED="1438436532935">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Produces sound pollution" ID="ID_193167511" CREATED="1434026526071" MODIFIED="1438114061394">
+<node TEXT="Produces sound pollution" ID="ID_193167511" CREATED="1434026526071" MODIFIED="1438436532938">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Airfields/airports" ID="ID_1744735156" CREATED="1434025273462" MODIFIED="1438114061395">
+<node TEXT="Airfields/airports" ID="ID_1744735156" CREATED="1434025273462" MODIFIED="1438436532941">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Tourist attraction" ID="ID_1043201657" CREATED="1434025332214" MODIFIED="1438114061396">
+<node TEXT="Tourist attraction" ID="ID_1043201657" CREATED="1434025332214" MODIFIED="1438436532945">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Water &quot;production&quot;" ID="ID_387745113" CREATED="1434025817862" MODIFIED="1438114061397">
+<node TEXT="Water &quot;production&quot;" ID="ID_387745113" CREATED="1434025817862" MODIFIED="1438436532954">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_1106089880" STARTINCLINATION="1164;0;" ENDINCLINATION="1164;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
-<node TEXT="Are basicly water pumps, wells, etc." ID="ID_1391771818" CREATED="1434025892423" MODIFIED="1438114061398">
+<node TEXT="Are basicly water pumps, wells, etc." ID="ID_1391771818" CREATED="1434025892423" MODIFIED="1438436532953">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Water &quot;disposal&quot;" ID="ID_92829122" CREATED="1434025885047" MODIFIED="1438114061398">
+<node TEXT="Water &quot;disposal&quot;" ID="ID_92829122" CREATED="1434025885047" MODIFIED="1438436532961">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_427323284" STARTINCLINATION="1198;0;" ENDINCLINATION="1198;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
-<node TEXT="Are basicly water treatments or sewage pipes" ID="ID_1848223480" CREATED="1434025903831" MODIFIED="1438114061399">
+<node TEXT="Are basicly water treatments or sewage pipes" ID="ID_1848223480" CREATED="1434025903831" MODIFIED="1438436532960">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Health care" ID="ID_327865089" CREATED="1434036532337" MODIFIED="1438114061400">
+<node TEXT="Health care" ID="ID_327865089" CREATED="1434036532337" MODIFIED="1438436532964">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_150347791" STARTINCLINATION="2592;0;" ENDINCLINATION="2592;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
-<node TEXT="Death care" ID="ID_609033036" CREATED="1434036537697" MODIFIED="1438114061401">
+<node TEXT="Death care" ID="ID_609033036" CREATED="1434036537697" MODIFIED="1438436532968">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_765478801" STARTINCLINATION="2592;0;" ENDINCLINATION="2592;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
-<node TEXT="Harbor" ID="ID_440665573" CREATED="1434037606210" MODIFIED="1438114061402">
+<node TEXT="Harbor" ID="ID_440665573" CREATED="1434037606210" MODIFIED="1438436532971">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_1900102141" STARTINCLINATION="1025;0;" ENDINCLINATION="1025;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
-<node TEXT="Religion" ID="ID_1874145544" CREATED="1434038693939" MODIFIED="1438114061403">
+<node TEXT="Religion" ID="ID_1874145544" CREATED="1434038693939" MODIFIED="1438436532975">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_414561380" STARTINCLINATION="3484;0;" ENDINCLINATION="3484;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
 </node>
-<node TEXT="Policies" ID="ID_76932011" CREATED="1434013960379" MODIFIED="1438114061403">
+<node TEXT="Policies" ID="ID_76932011" CREATED="1434013960379" MODIFIED="1438436532978">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Path construction" ID="ID_911618044" CREATED="1434013974779" MODIFIED="1438114061404">
+<node TEXT="Path construction" ID="ID_911618044" CREATED="1434013974779" MODIFIED="1438436533017">
 <font NAME="Dialog"/>
-<node TEXT="Simple path way" ID="ID_34726148" CREATED="1434013986603" MODIFIED="1438114061405">
+<node TEXT="Simple path way" ID="ID_34726148" CREATED="1434013986603" MODIFIED="1438436532987">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Paved road" ID="ID_1825975625" CREATED="1434013990731" MODIFIED="1438114061406">
+<node TEXT="Paved road" ID="ID_1825975625" CREATED="1434013990731" MODIFIED="1438436532991">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Concrete road" ID="ID_794182108" CREATED="1434014151724" MODIFIED="1438114061407">
+<node TEXT="Concrete road" ID="ID_794182108" CREATED="1434014151724" MODIFIED="1438436532995">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Asphalt road" ID="ID_1925182705" CREATED="1434014189036" MODIFIED="1438114061408">
+<node TEXT="Asphalt road" ID="ID_1925182705" CREATED="1434014189036" MODIFIED="1438436532999">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="&quot;High tech&quot; road" ID="ID_1016004445" CREATED="1434014209883" MODIFIED="1438114061409">
+<node TEXT="&quot;High tech&quot; road" ID="ID_1016004445" CREATED="1434014209883" MODIFIED="1438436533003">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Bus road" ID="ID_614599967" CREATED="1434038284194" MODIFIED="1438114061410">
+<node TEXT="Bus road" ID="ID_614599967" CREATED="1434038284194" MODIFIED="1438436533006">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Tram rail" ID="ID_1958155553" CREATED="1434038289074" MODIFIED="1438114061411">
+<node TEXT="Tram rail" ID="ID_1958155553" CREATED="1434038289074" MODIFIED="1438436533014">
 <font NAME="Dialog"/>
-<node TEXT="Can be combined with road" ID="ID_69922662" CREATED="1434038404290" MODIFIED="1438114061412">
+<node TEXT="Can be combined with road" ID="ID_69922662" CREATED="1434038404290" MODIFIED="1438436533013">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Train rail" ID="ID_1251785316" CREATED="1434038292770" MODIFIED="1438114061412">
+<node TEXT="Train rail" ID="ID_1251785316" CREATED="1434038292770" MODIFIED="1438436533016">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Public transportation" ID="ID_292276018" CREATED="1434014223499" MODIFIED="1438114061413">
+<node TEXT="Public transportation" ID="ID_292276018" CREATED="1434014223499" MODIFIED="1438436533254">
 <font NAME="Dialog"/>
-<node TEXT="General" ID="ID_1561839644" CREATED="1434026538327" MODIFIED="1438114061414">
+<node TEXT="General" ID="ID_1561839644" CREATED="1434026538327" MODIFIED="1438436533039">
 <font NAME="Dialog"/>
-<node TEXT="Base buildings produce sound pollution" ID="ID_1544345473" CREATED="1434026540951" MODIFIED="1438114061415">
+<node TEXT="Base buildings produce sound pollution" ID="ID_1544345473" CREATED="1434026540951" MODIFIED="1438436533028">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Schedule is maybe needed (extended simulation)" ID="ID_389882591" CREATED="1434026562903" MODIFIED="1438114061416">
+<node TEXT="Schedule is maybe needed (extended simulation)" ID="ID_389882591" CREATED="1434026562903" MODIFIED="1438436533031">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Stops affect area around them (happiness)" ID="ID_129381401" CREATED="1434026599927" MODIFIED="1438114061417">
+<node TEXT="Stops affect area around them (happiness)" ID="ID_129381401" CREATED="1434026599927" MODIFIED="1438436533035">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Player doesn&apos;t need to take care of ticket prices" ID="ID_867915346" CREATED="1434026628855" MODIFIED="1438114061418">
+<node TEXT="Player doesn&apos;t need to take care of ticket prices" ID="ID_867915346" CREATED="1434026628855" MODIFIED="1438436533038">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Engine types" ID="ID_1137996373" CREATED="1434024439781" MODIFIED="1438114061418">
+<node TEXT="Engine types" ID="ID_1137996373" CREATED="1434024439781" MODIFIED="1438436533058">
 <font NAME="Dialog"/>
-<node TEXT="&quot;Animal&quot;" ID="ID_593821623" CREATED="1434024475797" MODIFIED="1438114061419">
+<node TEXT="&quot;Animal&quot;" ID="ID_593821623" CREATED="1434024475797" MODIFIED="1438436533046">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Steam" ID="ID_1874058884" CREATED="1434024449333" MODIFIED="1438114061420">
+<node TEXT="Steam" ID="ID_1874058884" CREATED="1434024449333" MODIFIED="1438436533050">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Gas" ID="ID_1357267475" CREATED="1434024458565" MODIFIED="1438114061421">
+<node TEXT="Gas" ID="ID_1357267475" CREATED="1434024458565" MODIFIED="1438436533054">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Electrical" ID="ID_1218352280" CREATED="1434024466565" MODIFIED="1438114061422">
+<node TEXT="Electrical" ID="ID_1218352280" CREATED="1434024466565" MODIFIED="1438436533057">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Taxi" ID="ID_29583395" CREATED="1434024233173" MODIFIED="1438114061423">
+<node TEXT="Taxi" ID="ID_29583395" CREATED="1434024233173" MODIFIED="1438436533069">
 <font NAME="Dialog"/>
-<node TEXT="Base building" ID="ID_971909367" CREATED="1434024630053" MODIFIED="1438114061424">
+<node TEXT="Base building" ID="ID_971909367" CREATED="1434024630053" MODIFIED="1438436533065">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Taxi stand" ID="ID_46063612" CREATED="1434024636549" MODIFIED="1438114061424">
+<node TEXT="Taxi stand" ID="ID_46063612" CREATED="1434024636549" MODIFIED="1438436533068">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Bus" ID="ID_81208442" CREATED="1434024210373" MODIFIED="1438114061425">
+<node TEXT="Bus" ID="ID_81208442" CREATED="1434024210373" MODIFIED="1438436533090">
 <font NAME="Dialog"/>
-<node TEXT="Base building" ID="ID_1320535207" CREATED="1434024644261" MODIFIED="1438114061426">
+<node TEXT="Base building" ID="ID_1320535207" CREATED="1434024644261" MODIFIED="1438436533080">
 <font NAME="Dialog"/>
-<node TEXT="For public and school bus" ID="ID_928081155" CREATED="1434026445383" MODIFIED="1438114061427">
+<node TEXT="For public and school bus" ID="ID_928081155" CREATED="1434026445383" MODIFIED="1438436533079">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Bus stop" ID="ID_879586937" CREATED="1434024647429" MODIFIED="1438114061428">
+<node TEXT="Bus stop" ID="ID_879586937" CREATED="1434024647429" MODIFIED="1438436533086">
 <font NAME="Dialog"/>
-<node TEXT="Special school bus stop" ID="ID_852251718" CREATED="1434026429866" MODIFIED="1438114061429">
+<node TEXT="Special school bus stop" ID="ID_852251718" CREATED="1434026429866" MODIFIED="1438436533085">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Bus lane/road" ID="ID_1602395192" CREATED="1434038202053" MODIFIED="1438114061430">
+<node TEXT="Bus lane/road" ID="ID_1602395192" CREATED="1434038202053" MODIFIED="1438436533089">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Tram" ID="ID_364384319" CREATED="1434024213717" MODIFIED="1438114061430">
+<node TEXT="Tram" ID="ID_364384319" CREATED="1434024213717" MODIFIED="1438436533103">
 <font NAME="Dialog"/>
-<node TEXT="Base building" ID="ID_8099844" CREATED="1434024655909" MODIFIED="1438114061431">
+<node TEXT="Base building" ID="ID_8099844" CREATED="1434024655909" MODIFIED="1438436533096">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Tram stop" ID="ID_1883956491" CREATED="1434024661896" MODIFIED="1438114061432">
+<node TEXT="Tram stop" ID="ID_1883956491" CREATED="1434024661896" MODIFIED="1438436533099">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Tram rail" ID="ID_707282287" CREATED="1434038211682" MODIFIED="1438114061433">
+<node TEXT="Tram rail" ID="ID_707282287" CREATED="1434038211682" MODIFIED="1438436533102">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Train" ID="ID_1690205230" CREATED="1434024216661" MODIFIED="1438114061434">
+<node TEXT="Train" ID="ID_1690205230" CREATED="1434024216661" MODIFIED="1438436533117">
 <font NAME="Dialog"/>
-<node TEXT="Base building" ID="ID_1829141429" CREATED="1434024671221" MODIFIED="1438114061435">
+<node TEXT="Base building" ID="ID_1829141429" CREATED="1434024671221" MODIFIED="1438436533109">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Train station" ID="ID_477160902" CREATED="1434024675992" MODIFIED="1438114061435">
+<node TEXT="Train station" ID="ID_477160902" CREATED="1434024675992" MODIFIED="1438436533113">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Train rail" ID="ID_1526184507" CREATED="1434038223058" MODIFIED="1438114061436">
+<node TEXT="Train rail" ID="ID_1526184507" CREATED="1434038223058" MODIFIED="1438436533116">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Aircraft" ID="ID_586419269" CREATED="1434024222101" MODIFIED="1438114061437">
+<node TEXT="Aircraft" ID="ID_586419269" CREATED="1434024222101" MODIFIED="1438436533228">
 <font NAME="Dialog"/>
-<node TEXT="&quot;Buildings&quot;" ID="ID_270682100" CREATED="1434037245201" MODIFIED="1438114061438">
+<node TEXT="&quot;Buildings&quot;" ID="ID_270682100" CREATED="1434037245201" MODIFIED="1438436533206">
 <font NAME="Dialog"/>
-<node TEXT="General" ID="ID_1515749086" CREATED="1434038050739" MODIFIED="1438114061439">
+<node TEXT="General" ID="ID_1515749086" CREATED="1434038050739" MODIFIED="1438436533130">
 <font NAME="Dialog"/>
-<node TEXT="&quot;Produces&quot; and &quot;consumes&quot; cargo and passengers" ID="ID_1863484600" CREATED="1434038053714" MODIFIED="1438114061440">
+<node TEXT="&quot;Produces&quot; and &quot;consumes&quot; cargo and passengers" ID="ID_1863484600" CREATED="1434038053714" MODIFIED="1438436533129">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Helicopter pad" ID="ID_1783402935" CREATED="1434037478769" MODIFIED="1438114061440">
+<node TEXT="Helicopter pad" ID="ID_1783402935" CREATED="1434037478769" MODIFIED="1438436533154">
 <font NAME="Dialog"/>
-<node TEXT="Only local flight connections are permitted" ID="ID_231815040" CREATED="1434037486898" MODIFIED="1438114061441">
+<node TEXT="Only local flight connections are permitted" ID="ID_231815040" CREATED="1434037486898" MODIFIED="1438436533136">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Low price and maintenance" ID="ID_1413481195" CREATED="1434037501778" MODIFIED="1438114061442">
+<node TEXT="Low price and maintenance" ID="ID_1413481195" CREATED="1434037501778" MODIFIED="1438436533140">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Low air/sound pollution" ID="ID_1179699139" CREATED="1434025101782" MODIFIED="1438114061443">
+<node TEXT="Low air/sound pollution" ID="ID_1179699139" CREATED="1434025101782" MODIFIED="1438436533143">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Low tourist/cargo volume" ID="ID_673035657" CREATED="1434025176214" MODIFIED="1438114061444">
+<node TEXT="Low tourist/cargo volume" ID="ID_673035657" CREATED="1434025176214" MODIFIED="1438436533147">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Low business volume" ID="ID_161332194" CREATED="1434037137537" MODIFIED="1438114061445">
+<node TEXT="Low business volume" ID="ID_161332194" CREATED="1434037137537" MODIFIED="1438436533150">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Only helicopters" ID="ID_1592902105" CREATED="1434037345569" MODIFIED="1438114061446">
+<node TEXT="Only helicopters" ID="ID_1592902105" CREATED="1434037345569" MODIFIED="1438436533153">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Airfield (complete)" ID="ID_1625626795" CREATED="1434024984198" MODIFIED="1438114061447">
+<node TEXT="Airfield (complete)" ID="ID_1625626795" CREATED="1434024984198" MODIFIED="1438436533178">
 <font NAME="Dialog"/>
-<node TEXT="Only local flight connections are permitted" ID="ID_1570511959" CREATED="1434025020358" MODIFIED="1438114061447">
+<node TEXT="Only local flight connections are permitted" ID="ID_1570511959" CREATED="1434025020358" MODIFIED="1438436533160">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Low price and maintenance" ID="ID_335745619" CREATED="1434025035094" MODIFIED="1438114061448">
+<node TEXT="Low price and maintenance" ID="ID_335745619" CREATED="1434025035094" MODIFIED="1438436533163">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Low air/sound pollution" ID="ID_998915189" CREATED="1434025101782" MODIFIED="1438114061449">
+<node TEXT="Low air/sound pollution" ID="ID_998915189" CREATED="1434025101782" MODIFIED="1438436533167">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Low tourist/cargo volume" ID="ID_1836981879" CREATED="1434025176214" MODIFIED="1438114061450">
+<node TEXT="Low tourist/cargo volume" ID="ID_1836981879" CREATED="1434025176214" MODIFIED="1438436533170">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Low business volume" ID="ID_1658171045" CREATED="1434037137537" MODIFIED="1438114061451">
+<node TEXT="Low business volume" ID="ID_1658171045" CREATED="1434037137537" MODIFIED="1438436533174">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Small airplanes or helicopters" ID="ID_1800546197" CREATED="1434037345569" MODIFIED="1438114061452">
+<node TEXT="Small airplanes or helicopters" ID="ID_1800546197" CREATED="1434037345569" MODIFIED="1438436533177">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Airport (complete)" ID="ID_202490500" CREATED="1434024970550" MODIFIED="1438114061453">
+<node TEXT="Airport (complete)" ID="ID_202490500" CREATED="1434024970550" MODIFIED="1438436533203">
 <font NAME="Dialog"/>
-<node TEXT="Local and over-regional (near outside world) are permitted" ID="ID_414679485" CREATED="1434025048438" MODIFIED="1438114061453">
+<node TEXT="Local and over-regional (near outside world) are permitted" ID="ID_414679485" CREATED="1434025048438" MODIFIED="1438436533184">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Medium price and maintenance" ID="ID_238332842" CREATED="1434025075990" MODIFIED="1438114061454">
+<node TEXT="Medium price and maintenance" ID="ID_238332842" CREATED="1434025075990" MODIFIED="1438436533187">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Medium/high air/sound pollution" ID="ID_1486261206" CREATED="1434025110086" MODIFIED="1438114061455">
+<node TEXT="Medium/high air/sound pollution" ID="ID_1486261206" CREATED="1434025110086" MODIFIED="1438436533192">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Medium tourist/cargo volume" ID="ID_1027504925" CREATED="1434025187590" MODIFIED="1438114061456">
+<node TEXT="Medium tourist/cargo volume" ID="ID_1027504925" CREATED="1434025187590" MODIFIED="1438436533196">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Medium business volume" ID="ID_1804174917" CREATED="1434037197153" MODIFIED="1438114061457">
+<node TEXT="Medium business volume" ID="ID_1804174917" CREATED="1434037197153" MODIFIED="1438436533199">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Small and medium sized airplanes" ID="ID_956167435" CREATED="1434037360546" MODIFIED="1438114061458">
+<node TEXT="Small and medium sized airplanes" ID="ID_956167435" CREATED="1434037360546" MODIFIED="1438436533202">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="International airport (complete)" ID="ID_1854892487" CREATED="1434025005302" MODIFIED="1438114061459">
+<node TEXT="International airport (complete)" ID="ID_1854892487" CREATED="1434025005302" MODIFIED="1438436533225">
 <font NAME="Dialog"/>
-<node TEXT="All type of flight connections are permitted" ID="ID_1579342217" CREATED="1434025085510" MODIFIED="1438114061459">
+<node TEXT="All type of flight connections are permitted" ID="ID_1579342217" CREATED="1434025085510" MODIFIED="1438436533208">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="High/very high price and maintenance" ID="ID_424385076" CREATED="1434025133430" MODIFIED="1438114061460">
+<node TEXT="High/very high price and maintenance" ID="ID_424385076" CREATED="1434025133430" MODIFIED="1438436533211">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="High/very high air/sound pollution" ID="ID_406032093" CREATED="1434025150486" MODIFIED="1438114061461">
+<node TEXT="High/very high air/sound pollution" ID="ID_406032093" CREATED="1434025150486" MODIFIED="1438436533215">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="High tourist/cargo volume" ID="ID_391939235" CREATED="1434025194086" MODIFIED="1438114061462">
+<node TEXT="High tourist/cargo volume" ID="ID_391939235" CREATED="1434025194086" MODIFIED="1438436533218">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="High business volume" ID="ID_1785425119" CREATED="1434037209281" MODIFIED="1438114061463">
+<node TEXT="High business volume" ID="ID_1785425119" CREATED="1434037209281" MODIFIED="1438436533221">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="All types of airplanes" ID="ID_836248797" CREATED="1434037380065" MODIFIED="1438114061464">
+<node TEXT="All types of airplanes" ID="ID_836248797" CREATED="1434037380065" MODIFIED="1438436533224">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Vehicles" ID="ID_1894782985" CREATED="1434037266209" MODIFIED="1438114061464">
+<node TEXT="Vehicles" ID="ID_1894782985" CREATED="1434037266209" MODIFIED="1438436533250">
 <font NAME="Dialog"/>
-<node TEXT="Airplane" ID="ID_398621418" CREATED="1434037271089" MODIFIED="1438114061465">
+<node TEXT="Airplane" ID="ID_398621418" CREATED="1434037271089" MODIFIED="1438436533247">
 <font NAME="Dialog"/>
-<node TEXT="Cargo and passenger are not separated" ID="ID_918280240" CREATED="1434037401570" MODIFIED="1438114061466">
+<node TEXT="Cargo and passenger are not separated" ID="ID_918280240" CREATED="1434037401570" MODIFIED="1438436533233">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Charter airplane (hireable)" ID="ID_760261873" CREATED="1434037309681" MODIFIED="1438114061467">
+<node TEXT="Charter airplane (hireable)" ID="ID_760261873" CREATED="1434037309681" MODIFIED="1438436533237">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Small airliner" ID="ID_1649905668" CREATED="1434037322194" MODIFIED="1438114061468">
+<node TEXT="Small airliner" ID="ID_1649905668" CREATED="1434037322194" MODIFIED="1438436533240">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Medium airliner" ID="ID_1203098260" CREATED="1434037329569" MODIFIED="1438114061469">
+<node TEXT="Medium airliner" ID="ID_1203098260" CREATED="1434037329569" MODIFIED="1438436533243">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Large airliner" ID="ID_1239860649" CREATED="1434037334033" MODIFIED="1438114061469">
+<node TEXT="Large airliner" ID="ID_1239860649" CREATED="1434037334033" MODIFIED="1438436533246">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Helicopter" ID="ID_136826536" CREATED="1434037282593" MODIFIED="1438114061470">
+<node TEXT="Helicopter" ID="ID_136826536" CREATED="1434037282593" MODIFIED="1438436533249">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Ship" ID="ID_241589294" CREATED="1434037588514" MODIFIED="1438114061471">
+<node TEXT="Ship" ID="ID_241589294" CREATED="1434037588514" MODIFIED="1438436533266">
 <font NAME="Dialog"/>
-<node TEXT="Harbor" ID="ID_1900102141" CREATED="1434037595266" MODIFIED="1438114061472">
+<node TEXT="Harbor" ID="ID_1900102141" CREATED="1434037595266" MODIFIED="1438436533263">
 <font NAME="Dialog"/>
-<node TEXT="For cargo" ID="ID_1119512696" CREATED="1434037704274" MODIFIED="1438114061473">
+<node TEXT="For cargo" ID="ID_1119512696" CREATED="1434037704274" MODIFIED="1438436533259">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="For passengers" ID="ID_269073880" CREATED="1434037707698" MODIFIED="1438114061473">
+<node TEXT="For passengers" ID="ID_269073880" CREATED="1434037707698" MODIFIED="1438436533262">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Vehicles" ID="ID_1741340137" CREATED="1434037597986" MODIFIED="1438114061474">
+<node TEXT="Vehicles" ID="ID_1741340137" CREATED="1434037597986" MODIFIED="1438436533297">
 <font NAME="Dialog"/>
-<node TEXT="Cargo" ID="ID_1351000206" CREATED="1434037808050" MODIFIED="1438114061475">
+<node TEXT="Cargo" ID="ID_1351000206" CREATED="1434037808050" MODIFIED="1438436533285">
 <font NAME="Dialog"/>
-<node TEXT="Container ship" ID="ID_28191732" CREATED="1434037755602" MODIFIED="1438114061476">
+<node TEXT="Container ship" ID="ID_28191732" CREATED="1434037755602" MODIFIED="1438436533282">
 <font NAME="Dialog"/>
-<node TEXT="Small" ID="ID_821046458" CREATED="1434037827858" MODIFIED="1438114061477">
+<node TEXT="Small" ID="ID_821046458" CREATED="1434037827858" MODIFIED="1438436533274">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Medium" ID="ID_1275324437" CREATED="1434037830690" MODIFIED="1438114061478">
+<node TEXT="Medium" ID="ID_1275324437" CREATED="1434037830690" MODIFIED="1438436533278">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Large" ID="ID_1351174771" CREATED="1434037841490" MODIFIED="1438114061478">
+<node TEXT="Large" ID="ID_1351174771" CREATED="1434037841490" MODIFIED="1438436533281">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Gas/oil tanker" ID="ID_957372015" CREATED="1434037798802" MODIFIED="1438114061479">
+<node TEXT="Gas/oil tanker" ID="ID_957372015" CREATED="1434037798802" MODIFIED="1438436533294">
 <font NAME="Dialog"/>
-<node TEXT="Small" ID="ID_206582860" CREATED="1434037827858" MODIFIED="1438114061480">
+<node TEXT="Small" ID="ID_206582860" CREATED="1434037827858" MODIFIED="1438436533287">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Medium" ID="ID_1920933085" CREATED="1434037830690" MODIFIED="1438114061481">
+<node TEXT="Medium" ID="ID_1920933085" CREATED="1434037830690" MODIFIED="1438436533290">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Large" ID="ID_1758233136" CREATED="1434037841490" MODIFIED="1438114061482">
+<node TEXT="Large" ID="ID_1758233136" CREATED="1434037841490" MODIFIED="1438436533293">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Passenger" ID="ID_691629947" CREATED="1434037813106" MODIFIED="1438114061482">
+<node TEXT="Passenger" ID="ID_691629947" CREATED="1434037813106" MODIFIED="1438436533313">
 <font NAME="Dialog"/>
-<node TEXT="Passenger liner" ID="ID_1063044236" CREATED="1434037816706" MODIFIED="1438114061483">
+<node TEXT="Passenger liner" ID="ID_1063044236" CREATED="1434037816706" MODIFIED="1438436533310">
 <font NAME="Dialog"/>
-<node TEXT="Small" ID="ID_953850230" CREATED="1434037827858" MODIFIED="1438114061484">
+<node TEXT="Small" ID="ID_953850230" CREATED="1434037827858" MODIFIED="1438436533302">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Medium" ID="ID_955990556" CREATED="1434037830690" MODIFIED="1438114061485">
+<node TEXT="Medium" ID="ID_955990556" CREATED="1434037830690" MODIFIED="1438436533306">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Large" ID="ID_1649293445" CREATED="1434037841490" MODIFIED="1438114061486">
+<node TEXT="Large" ID="ID_1649293445" CREATED="1434037841490" MODIFIED="1438436533309">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Cruiser" ID="ID_271989108" CREATED="1434037860386" MODIFIED="1438114061486">
+<node TEXT="Cruiser" ID="ID_271989108" CREATED="1434037860386" MODIFIED="1438436533312">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
 </node>
 </node>
-<node TEXT="Research &amp; Development" ID="ID_1469711116" CREATED="1434014073212" MODIFIED="1438114061487">
+<node TEXT="Research &amp; Development" ID="ID_1469711116" CREATED="1434014073212" MODIFIED="1438436533315">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Public supplies" ID="ID_1744289032" CREATED="1434015518621" MODIFIED="1438114061488">
+<node TEXT="Public supplies" ID="ID_1744289032" CREATED="1434015518621" MODIFIED="1438436533446">
 <font NAME="Dialog"/>
-<node TEXT="Water" ID="ID_1936324136" CREATED="1434015523917" MODIFIED="1438114061489">
+<node TEXT="Water" ID="ID_1936324136" CREATED="1434015523917" MODIFIED="1438436533365">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_1843159243" STARTINCLINATION="414;0;" ENDINCLINATION="414;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
-<node TEXT="Citzen start with a simple water catcher" ID="ID_471468594" CREATED="1434015080604" MODIFIED="1438114061490">
+<node TEXT="Citzen start with a simple water catcher" ID="ID_471468594" CREATED="1434015080604" MODIFIED="1438436533330">
 <font NAME="Dialog"/>
-<node TEXT="They will build it near their &quot;house&quot;" ID="ID_146916375" CREATED="1434015596382" MODIFIED="1438114061491">
+<node TEXT="They will build it near their &quot;house&quot;" ID="ID_146916375" CREATED="1434015596382" MODIFIED="1438436533329">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Player later need to place wells" ID="ID_1326107077" CREATED="1434015174588" MODIFIED="1438114061491">
+<node TEXT="Player later need to place wells" ID="ID_1326107077" CREATED="1434015174588" MODIFIED="1438436533343">
 <font NAME="Dialog"/>
-<node TEXT="Player need to dig them deeper" ID="ID_1901124442" CREATED="1434015227484" MODIFIED="1438114061492">
+<node TEXT="Player need to dig them deeper" ID="ID_1901124442" CREATED="1434015227484" MODIFIED="1438436533335">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Citizen need to walk there" ID="ID_251252833" CREATED="1434015691517" MODIFIED="1438114061493">
+<node TEXT="Citizen need to walk there" ID="ID_251252833" CREATED="1434015691517" MODIFIED="1438436533339">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Can be placed anywhere" ID="ID_330883909" CREATED="1434015726685" MODIFIED="1438114061494">
+<node TEXT="Can be placed anywhere" ID="ID_330883909" CREATED="1434015726685" MODIFIED="1438436533342">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Replace wells with simple mechanic &quot;pumps&quot;" ID="ID_1468580579" CREATED="1434015192428" MODIFIED="1438114061495">
+<node TEXT="Replace wells with simple mechanic &quot;pumps&quot;" ID="ID_1468580579" CREATED="1434015192428" MODIFIED="1438436533362">
 <font NAME="Dialog"/>
-<node TEXT="Distributes water faster and wider" ID="ID_1097553084" CREATED="1434015208172" MODIFIED="1438114061496">
+<node TEXT="Distributes water faster and wider" ID="ID_1097553084" CREATED="1434015208172" MODIFIED="1438436533348">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Can supply only a small area" ID="ID_1216203338" CREATED="1434015659005" MODIFIED="1438114061496">
+<node TEXT="Can supply only a small area" ID="ID_1216203338" CREATED="1434015659005" MODIFIED="1438436533352">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Must be maintained" ID="ID_1934396918" CREATED="1434015288732" MODIFIED="1438114061497">
+<node TEXT="Must be maintained" ID="ID_1934396918" CREATED="1434015288732" MODIFIED="1438436533355">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Can only be placed on rivers" ID="ID_1964199169" CREATED="1434015739198" MODIFIED="1438114061498">
+<node TEXT="Can only be placed on rivers" ID="ID_1964199169" CREATED="1434015739198" MODIFIED="1438436533358">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Canals distribute the water to the people" ID="ID_628634549" CREATED="1434015297437" MODIFIED="1438114061499">
+<node TEXT="Canals distribute the water to the people" ID="ID_628634549" CREATED="1434015297437" MODIFIED="1438436533361">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Later replaced by supply water" ID="ID_138900930" CREATED="1434015337100" MODIFIED="1438114061500">
+<node TEXT="Later replaced by supply water" ID="ID_138900930" CREATED="1434015337100" MODIFIED="1438436533375">
 <font NAME="Dialog"/>
-<node TEXT="Whole city can be supplied" ID="ID_697375333" CREATED="1434015404109" MODIFIED="1438114061501">
+<node TEXT="Whole city can be supplied" ID="ID_697375333" CREATED="1434015404109" MODIFIED="1438436533368">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Needs electrical water pumps" ID="ID_58563045" CREATED="1434015413964" MODIFIED="1438114061501">
+<node TEXT="Needs electrical water pumps" ID="ID_58563045" CREATED="1434015413964" MODIFIED="1438436533371">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Needs be connected to all single buildings" ID="ID_1305093965" CREATED="1434015803965" MODIFIED="1438114061502">
+<node TEXT="Needs be connected to all single buildings" ID="ID_1305093965" CREATED="1434015803965" MODIFIED="1438436533374">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_679686952" STARTINCLINATION="390;0;" ENDINCLINATION="390;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
 </node>
 </node>
-<node TEXT="Electricity" ID="ID_815268623" CREATED="1434015527005" MODIFIED="1438114061503">
+<node TEXT="Electricity" ID="ID_815268623" CREATED="1434015527005" MODIFIED="1438436533388">
 <font NAME="Dialog"/>
-<node TEXT="Can be placed on ground" ID="ID_573126256" CREATED="1434015855069" MODIFIED="1438114061504">
+<node TEXT="Can be placed on ground" ID="ID_573126256" CREATED="1434015855069" MODIFIED="1438436533380">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Later can be placed underground" ID="ID_375092942" CREATED="1434015863693" MODIFIED="1438114061505">
+<node TEXT="Later can be placed underground" ID="ID_375092942" CREATED="1434015863693" MODIFIED="1438436533384">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Lines need to be connected to all single buildings" ID="ID_1695985049" CREATED="1434015875565" MODIFIED="1438114061506">
+<node TEXT="Lines need to be connected to all single buildings" ID="ID_1695985049" CREATED="1434015875565" MODIFIED="1438436533387">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Waste handling" ID="ID_1139982" CREATED="1434015551517" MODIFIED="1438114061506">
+<node TEXT="Waste handling" ID="ID_1139982" CREATED="1434015551517" MODIFIED="1438436533443">
 <font NAME="Dialog"/>
-<node TEXT="Residential buildings &quot;produce&quot; different waste" ID="ID_1449360767" CREATED="1434015948493" MODIFIED="1438114061507">
+<node TEXT="Residential buildings &quot;produce&quot; different waste" ID="ID_1449360767" CREATED="1434015948493" MODIFIED="1438436533413">
 <font NAME="Dialog"/>
-<node TEXT="Used water" ID="ID_1644074446" CREATED="1434016105165" MODIFIED="1438114061508">
+<node TEXT="Used water" ID="ID_1644074446" CREATED="1434016105165" MODIFIED="1438436533410">
 <font NAME="Dialog"/>
-<node TEXT="Citizens may dump their used water somehow" ID="ID_1690763659" CREATED="1434016031901" MODIFIED="1438114061509">
+<node TEXT="Citizens may dump their used water somehow" ID="ID_1690763659" CREATED="1434016031901" MODIFIED="1438436533407">
 <font NAME="Dialog"/>
-<node TEXT="In old times they throw the used water out of the window" ID="ID_1464189293" CREATED="1434016044893" MODIFIED="1438114061510">
+<node TEXT="In old times they throw the used water out of the window" ID="ID_1464189293" CREATED="1434016044893" MODIFIED="1438436533403">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="This later must be improved by the player" ID="ID_1194667527" CREATED="1434016064541" MODIFIED="1438114061511">
+<node TEXT="This later must be improved by the player" ID="ID_1194667527" CREATED="1434016064541" MODIFIED="1438436533406">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Used water needs to be pumped away" ID="ID_892683065" CREATED="1434016021133" MODIFIED="1438114061511">
+<node TEXT="Used water needs to be pumped away" ID="ID_892683065" CREATED="1434016021133" MODIFIED="1438436533409">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Garbage" ID="ID_1572914565" CREATED="1434016113469" MODIFIED="1438114061512">
+<node TEXT="Garbage" ID="ID_1572914565" CREATED="1434016113469" MODIFIED="1438436533430">
 <font NAME="Dialog"/>
-<node TEXT="Citizens don&apos;t produce much garbage at beginning" ID="ID_578375442" CREATED="1434016120157" MODIFIED="1438114061513">
+<node TEXT="Citizens don&apos;t produce much garbage at beginning" ID="ID_578375442" CREATED="1434016120157" MODIFIED="1438436533423">
 <font NAME="Dialog"/>
-<node TEXT="They cannot buy produces as this has not been invented at the start" ID="ID_1747063743" CREATED="1434016136877" MODIFIED="1438114061514">
+<node TEXT="They cannot buy produces as this has not been invented at the start" ID="ID_1747063743" CREATED="1434016136877" MODIFIED="1438436533419">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Garbage may be leftovers from eating?" ID="ID_1148150589" CREATED="1434016167869" MODIFIED="1438114061515">
+<node TEXT="Garbage may be leftovers from eating?" ID="ID_1148150589" CREATED="1434016167869" MODIFIED="1438436533422">
 <icon BUILTIN="help"/>
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="If commercial buildings are available, citizens produce more garbage" ID="ID_739793365" CREATED="1434016195597" MODIFIED="1438114061515">
+<node TEXT="If commercial buildings are available, citizens produce more garbage" ID="ID_739793365" CREATED="1434016195597" MODIFIED="1438436533425">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Garbage later needs to be collected and handled" ID="ID_1225282666" CREATED="1434016298045" MODIFIED="1438114061516">
+<node TEXT="Garbage later needs to be collected and handled" ID="ID_1225282666" CREATED="1434016298045" MODIFIED="1438436533428">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Commercial buildings likewise" ID="ID_1866015405" CREATED="1434015976653" MODIFIED="1438114061517">
+<node TEXT="Commercial buildings likewise" ID="ID_1866015405" CREATED="1434015976653" MODIFIED="1438436533436">
 <font NAME="Dialog"/>
-<node TEXT="Depending on size (bigger=more)" ID="ID_839842756" CREATED="1434016384894" MODIFIED="1438114061518">
+<node TEXT="Depending on size (bigger=more)" ID="ID_839842756" CREATED="1434016384894" MODIFIED="1438436533435">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Office buildings also" ID="ID_823859374" CREATED="1434016000109" MODIFIED="1438114061519">
+<node TEXT="Office buildings also" ID="ID_823859374" CREATED="1434016000109" MODIFIED="1438436533438">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Industry, too" ID="ID_434504213" CREATED="1434015992317" MODIFIED="1438114061519">
+<node TEXT="Industry, too" ID="ID_434504213" CREATED="1434015992317" MODIFIED="1438436533442">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Waste production can be lowered" ID="ID_779867598" CREATED="1434016422238" MODIFIED="1438114061520">
+<node TEXT="Waste production can be lowered" ID="ID_779867598" CREATED="1434016422238" MODIFIED="1438436533452">
 <font NAME="Dialog"/>
-<node TEXT="By educating citizens" ID="ID_636824048" CREATED="1434016435246" MODIFIED="1438114061521">
+<node TEXT="By educating citizens" ID="ID_636824048" CREATED="1434016435246" MODIFIED="1438436533448">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_1806757282" STARTINCLINATION="604;0;" ENDINCLINATION="604;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
-<node TEXT="By placing recycling plants" ID="ID_1085119934" CREATED="1434016447053" MODIFIED="1438114061522">
+<node TEXT="By placing recycling plants" ID="ID_1085119934" CREATED="1434016447053" MODIFIED="1438436533451">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_110998741" STARTINCLINATION="56;0;" ENDINCLINATION="56;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
 </node>
 </node>
-<node TEXT="Public services" ID="ID_1076954888" CREATED="1434016330781" MODIFIED="1438114061523">
+<node TEXT="Public services" ID="ID_1076954888" CREATED="1434016330781" MODIFIED="1438436533949">
 <font NAME="Dialog"/>
-<node TEXT="Water supply/treatment" ID="ID_1843159243" CREATED="1434025718454" MODIFIED="1438114061524">
+<node TEXT="Water supply/treatment" ID="ID_1843159243" CREATED="1434025718454" MODIFIED="1438436533479">
 <font NAME="Dialog"/>
-<node TEXT="General" ID="ID_1275322706" CREATED="1434025732774" MODIFIED="1438114061524">
+<node TEXT="General" ID="ID_1275322706" CREATED="1434025732774" MODIFIED="1438436533461">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Water pumps" ID="ID_1106089880" CREATED="1434025743558" MODIFIED="1438114061525">
+<node TEXT="Water pumps" ID="ID_1106089880" CREATED="1434025743558" MODIFIED="1438436533476">
 <font NAME="Dialog"/>
-<node TEXT="&quot;Produce&quot; fresh water" ID="ID_1602903939" CREATED="1434025767798" MODIFIED="1438114061526">
+<node TEXT="&quot;Produce&quot; fresh water" ID="ID_1602903939" CREATED="1434025767798" MODIFIED="1438436533468">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Different sizes produces lesser/more water/sound pollution" ID="ID_336993205" CREATED="1434025777334" MODIFIED="1438114061527">
+<node TEXT="Different sizes produces lesser/more water/sound pollution" ID="ID_336993205" CREATED="1434025777334" MODIFIED="1438436533472">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Produces sound pollution" ID="ID_405023496" CREATED="1434026156679" MODIFIED="1438114061528">
+<node TEXT="Produces sound pollution" ID="ID_405023496" CREATED="1434026156679" MODIFIED="1438436533475">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Water treatment" ID="ID_427323284" CREATED="1434025754886" MODIFIED="1438114061529">
+<node TEXT="Water treatment" ID="ID_427323284" CREATED="1434025754886" MODIFIED="1438436533494">
 <font NAME="Dialog"/>
-<node TEXT="Wastewater treatment plant" ID="ID_173166112" CREATED="1434026052263" MODIFIED="1438114061529">
+<node TEXT="Wastewater treatment plant" ID="ID_173166112" CREATED="1434026052263" MODIFIED="1438436533491">
 <font NAME="Dialog"/>
-<node TEXT="Expensive price" ID="ID_706529042" CREATED="1434026116631" MODIFIED="1438114061530">
+<node TEXT="Expensive price" ID="ID_706529042" CREATED="1434026116631" MODIFIED="1438436533484">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Expensive maintenance" ID="ID_705594691" CREATED="1434026125047" MODIFIED="1438114061531">
+<node TEXT="Expensive maintenance" ID="ID_705594691" CREATED="1434026125047" MODIFIED="1438436533487">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Increases happiness (&quot;green&quot;)" ID="ID_1901512447" CREATED="1434026129623" MODIFIED="1438114061532">
+<node TEXT="Increases happiness (&quot;green&quot;)" ID="ID_1901512447" CREATED="1434026129623" MODIFIED="1438436533490">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Wastewater pipe" ID="ID_1511825864" CREATED="1434026104567" MODIFIED="1438114061533">
+<node TEXT="Wastewater pipe" ID="ID_1511825864" CREATED="1434026104567" MODIFIED="1438436533503">
 <font NAME="Dialog"/>
-<node TEXT="Low price" ID="ID_1645122660" CREATED="1434026143559" MODIFIED="1438114061533">
+<node TEXT="Low price" ID="ID_1645122660" CREATED="1434026143559" MODIFIED="1438436533496">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Low maintenance" ID="ID_896187759" CREATED="1434026146087" MODIFIED="1438114061534">
+<node TEXT="Low maintenance" ID="ID_896187759" CREATED="1434026146087" MODIFIED="1438436533499">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Decrease happiness, if to close to zones other than same type" ID="ID_1291615076" CREATED="1434026149671" MODIFIED="1438114061535">
+<node TEXT="Decrease happiness, if to close to zones other than same type" ID="ID_1291615076" CREATED="1434026149671" MODIFIED="1438436533509">
 <font NAME="Dialog"/>
-<node TEXT="Smells badly" ID="ID_511385107" CREATED="1434026285207" MODIFIED="1438114061536">
+<node TEXT="Smells badly" ID="ID_511385107" CREATED="1434026285207" MODIFIED="1438436533505">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Doesn&apos;t look good" ID="ID_1255996903" CREATED="1434026289527" MODIFIED="1438114061537">
+<node TEXT="Doesn&apos;t look good" ID="ID_1255996903" CREATED="1434026289527" MODIFIED="1438436533508">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
 </node>
 </node>
-<node TEXT="Garbage handling" ID="ID_650301467" CREATED="1434016335501" MODIFIED="1438114061538">
+<node TEXT="Garbage handling" ID="ID_650301467" CREATED="1434016335501" MODIFIED="1438436533615">
 <font NAME="Dialog"/>
-<node TEXT="Buildings (constructed on proper zone)" ID="ID_457377509" CREATED="1434016493694" MODIFIED="1438114061538">
+<node TEXT="Buildings (constructed on proper zone)" ID="ID_457377509" CREATED="1434016493694" MODIFIED="1438436533591">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_1935375367" STARTINCLINATION="921;0;" ENDINCLINATION="921;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
-<node TEXT="Landfill" ID="ID_21684473" CREATED="1434016505007" MODIFIED="1438114061539">
+<node TEXT="Landfill" ID="ID_21684473" CREATED="1434016505007" MODIFIED="1438436533541">
 <font NAME="Dialog"/>
-<node TEXT="Easy waste dumping" ID="ID_1872712065" CREATED="1434016821342" MODIFIED="1438114061540">
+<node TEXT="Easy waste dumping" ID="ID_1872712065" CREATED="1434016821342" MODIFIED="1438436533521">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Can be expanded by placing more &quot;landfill&quot; zones" ID="ID_1085620299" CREATED="1434016834318" MODIFIED="1438114061541">
+<node TEXT="Can be expanded by placing more &quot;landfill&quot; zones" ID="ID_1085620299" CREATED="1434016834318" MODIFIED="1438436533524">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Affects area around it as citizen don&apos;t like it" ID="ID_167295758" CREATED="1434016854974" MODIFIED="1438114061542">
+<node TEXT="Affects area around it as citizen don&apos;t like it" ID="ID_167295758" CREATED="1434016854974" MODIFIED="1438436533535">
 <icon BUILTIN="yes"/>
 <font NAME="Dialog"/>
-<node TEXT="Smelly air is NOT simulated" ID="ID_866536949" CREATED="1434016873646" MODIFIED="1438114061543">
+<node TEXT="Smelly air is NOT simulated" ID="ID_866536949" CREATED="1434016873646" MODIFIED="1438436533531">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Doesn&apos;t look good" ID="ID_359761538" CREATED="1434016884446" MODIFIED="1438114061544">
+<node TEXT="Doesn&apos;t look good" ID="ID_359761538" CREATED="1434016884446" MODIFIED="1438436533534">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Needs garbage trucks to be added" ID="ID_1077951865" CREATED="1434016894062" MODIFIED="1438114061544">
+<node TEXT="Needs garbage trucks to be added" ID="ID_1077951865" CREATED="1434016894062" MODIFIED="1438436533537">
 <icon BUILTIN="messagebox_warning"/>
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Causes water pollution" ID="ID_203922018" CREATED="1434017065550" MODIFIED="1438114061545">
+<node TEXT="Causes water pollution" ID="ID_203922018" CREATED="1434017065550" MODIFIED="1438436533540">
 <icon BUILTIN="messagebox_warning"/>
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Recycling plant" ID="ID_110998741" CREATED="1434016513470" MODIFIED="1438114061546">
+<node TEXT="Recycling plant" ID="ID_110998741" CREATED="1434016513470" MODIFIED="1438436533582">
 <font NAME="Dialog"/>
-<node TEXT="Produce &quot;sound pollution&quot;" ID="ID_1165331276" CREATED="1434016723630" MODIFIED="1438114061547">
+<node TEXT="Produce &quot;sound pollution&quot;" ID="ID_1165331276" CREATED="1434016723630" MODIFIED="1438436533557">
 <font NAME="Dialog"/>
-<node TEXT="It is very noisy" ID="ID_629712164" CREATED="1434016736910" MODIFIED="1438114061548">
+<node TEXT="It is very noisy" ID="ID_629712164" CREATED="1434016736910" MODIFIED="1438436533549">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Must be considered on construction" ID="ID_500569004" CREATED="1434016744110" MODIFIED="1438114061549">
+<node TEXT="Must be considered on construction" ID="ID_500569004" CREATED="1434016744110" MODIFIED="1438436533553">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="If residential zone is nearby, decreases happiness" ID="ID_327672985" CREATED="1434017166078" MODIFIED="1438114061549">
+<node TEXT="If residential zone is nearby, decreases happiness" ID="ID_327672985" CREATED="1434017166078" MODIFIED="1438436533556">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Produce some materials from waste processing" ID="ID_365904129" CREATED="1434016758254" MODIFIED="1438114061550">
+<node TEXT="Produce some materials from waste processing" ID="ID_365904129" CREATED="1434016758254" MODIFIED="1438436533573">
 <font NAME="Dialog"/>
-<node TEXT="Glass" ID="ID_1023912584" CREATED="1434016911102" MODIFIED="1438114061551">
+<node TEXT="Glass" ID="ID_1023912584" CREATED="1434016911102" MODIFIED="1438436533562">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Plastic" ID="ID_929530677" CREATED="1434016928270" MODIFIED="1438114061552">
+<node TEXT="Plastic" ID="ID_929530677" CREATED="1434016928270" MODIFIED="1438436533565">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Paper" ID="ID_1765966004" CREATED="1434016931086" MODIFIED="1438114061553">
+<node TEXT="Paper" ID="ID_1765966004" CREATED="1434016931086" MODIFIED="1438436533568">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Chemicals" ID="ID_425610409" CREATED="1434016947262" MODIFIED="1438114061554">
+<node TEXT="Chemicals" ID="ID_425610409" CREATED="1434016947262" MODIFIED="1438436533572">
 <icon BUILTIN="help"/>
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Citizens can bring their garbage there on their own" ID="ID_1134426669" CREATED="1434016960846" MODIFIED="1438114061554">
+<node TEXT="Citizens can bring their garbage there on their own" ID="ID_1134426669" CREATED="1434016960846" MODIFIED="1438436533575">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Added trucks will bring garbage, too" ID="ID_157130097" CREATED="1434016976654" MODIFIED="1438114061555">
+<node TEXT="Added trucks will bring garbage, too" ID="ID_157130097" CREATED="1434016976654" MODIFIED="1438436533578">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="No water or air pollution" ID="ID_476209461" CREATED="1434017117470" MODIFIED="1438114061556">
+<node TEXT="No water or air pollution" ID="ID_476209461" CREATED="1434017117470" MODIFIED="1438436533588">
 <font NAME="Dialog"/>
-<node TEXT="&quot;Green&quot; waste handling" ID="ID_1613916242" CREATED="1434017127550" MODIFIED="1438114061557">
+<node TEXT="&quot;Green&quot; waste handling" ID="ID_1613916242" CREATED="1434017127550" MODIFIED="1438436533584">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="May increase some citizen happiness" ID="ID_1175106202" CREATED="1434017141134" MODIFIED="1438114061558">
+<node TEXT="May increase some citizen happiness" ID="ID_1175106202" CREATED="1434017141134" MODIFIED="1438436533587">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Waste incinerating plant" ID="ID_1743203713" CREATED="1434016598350" MODIFIED="1438114061558">
+<node TEXT="Waste incinerating plant" ID="ID_1743203713" CREATED="1434016598350" MODIFIED="1438436533612">
 <font NAME="Dialog"/>
-<node TEXT="Produces air pollution" ID="ID_438264527" CREATED="1434016603758" MODIFIED="1438114061559">
+<node TEXT="Produces air pollution" ID="ID_438264527" CREATED="1434016603758" MODIFIED="1438436533603">
 <font NAME="Dialog"/>
-<node TEXT="Can be reduced by installing filters" ID="ID_122942382" CREATED="1434016633870" MODIFIED="1438114061560">
+<node TEXT="Can be reduced by installing filters" ID="ID_122942382" CREATED="1434016633870" MODIFIED="1438436533596">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Affects an area around it" ID="ID_1095837128" CREATED="1434016667782" MODIFIED="1438114061561">
+<node TEXT="Affects an area around it" ID="ID_1095837128" CREATED="1434016667782" MODIFIED="1438436533599">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Wind direction is NOT simulated" ID="ID_904415277" CREATED="1434016656190" MODIFIED="1438114061562">
+<node TEXT="Wind direction is NOT simulated" ID="ID_904415277" CREATED="1434016656190" MODIFIED="1438436533602">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Produces sound pollution" ID="ID_105188209" CREATED="1434039359619" MODIFIED="1438114061563">
+<node TEXT="Produces sound pollution" ID="ID_105188209" CREATED="1434039359619" MODIFIED="1438436533605">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Produces electricity, if upgraded" ID="ID_181446672" CREATED="1434016611086" MODIFIED="1438114061563">
+<node TEXT="Produces electricity, if upgraded" ID="ID_181446672" CREATED="1434016611086" MODIFIED="1438436533609">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Garbage trucks must be bought and added" ID="ID_1120549613" CREATED="1434016703582" MODIFIED="1438114061564">
+<node TEXT="Garbage trucks must be bought and added" ID="ID_1120549613" CREATED="1434016703582" MODIFIED="1438436533612">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Vehicles" ID="ID_232502441" CREATED="1434017221022" MODIFIED="1438114061565">
+<node TEXT="Vehicles" ID="ID_232502441" CREATED="1434017221022" MODIFIED="1438436533622">
 <font NAME="Dialog"/>
-<node TEXT="Garbage trucks" ID="ID_1761556722" CREATED="1434017224766" MODIFIED="1438114061566">
+<node TEXT="Garbage trucks" ID="ID_1761556722" CREATED="1434017224766" MODIFIED="1438436533618">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Raw material trucks (see recycling)" ID="ID_1850969610" CREATED="1434017230654" MODIFIED="1438114061567">
+<node TEXT="Raw material trucks (see recycling)" ID="ID_1850969610" CREATED="1434017230654" MODIFIED="1438436533621">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Public education" ID="ID_1806757282" CREATED="1434017295222" MODIFIED="1438114061567">
+<node TEXT="Public education" ID="ID_1806757282" CREATED="1434017295222" MODIFIED="1438436533804">
 <font NAME="Dialog"/>
-<node TEXT="General" ID="ID_1789626294" CREATED="1434017388190" MODIFIED="1438114061568">
+<node TEXT="General" ID="ID_1789626294" CREATED="1434017388190" MODIFIED="1438436533711">
 <font NAME="Dialog"/>
-<node TEXT="Depends on demand/need of citizens" ID="ID_864287688" CREATED="1434017372510" MODIFIED="1438114061569">
+<node TEXT="Depends on demand/need of citizens" ID="ID_864287688" CREATED="1434017372510" MODIFIED="1438436533631">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Provide different level of education" ID="ID_1643931520" CREATED="1434017393054" MODIFIED="1438114061570">
+<node TEXT="Provide different level of education" ID="ID_1643931520" CREATED="1434017393054" MODIFIED="1438436533634">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Reduce waste production" ID="ID_272833500" CREATED="1434017450783" MODIFIED="1438114061571">
+<node TEXT="Reduce waste production" ID="ID_272833500" CREATED="1434017450783" MODIFIED="1438436533638">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Increase demands on life-style" ID="ID_813275834" CREATED="1434017460079" MODIFIED="1438114061572">
+<node TEXT="Increase demands on life-style" ID="ID_813275834" CREATED="1434017460079" MODIFIED="1438436533641">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Are not fixed-size buildings" ID="ID_1621042286" CREATED="1434017744031" MODIFIED="1438114061573">
+<node TEXT="Are not fixed-size buildings" ID="ID_1621042286" CREATED="1434017744031" MODIFIED="1438436533658">
 <font NAME="Dialog"/>
-<node TEXT="Education zone must be placed with minimum size" ID="ID_514227429" CREATED="1434017755327" MODIFIED="1438114061574">
+<node TEXT="Education zone must be placed with minimum size" ID="ID_514227429" CREATED="1434017755327" MODIFIED="1438436533648">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Can be flexible expanded if demand increases" ID="ID_685414981" CREATED="1434017771807" MODIFIED="1438114061575">
+<node TEXT="Can be flexible expanded if demand increases" ID="ID_685414981" CREATED="1434017771807" MODIFIED="1438436533655">
 <font NAME="Dialog"/>
-<node TEXT="Effectiveness may decrease in larger schools" ID="ID_316945029" CREATED="1434017792719" MODIFIED="1438114061576">
+<node TEXT="Effectiveness may decrease in larger schools" ID="ID_316945029" CREATED="1434017792719" MODIFIED="1438436533654">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="&quot;Type&quot; of school must be set and cannot be changed later" ID="ID_912876280" CREATED="1434018436655" MODIFIED="1438114061576">
+<node TEXT="&quot;Type&quot; of school must be set and cannot be changed later" ID="ID_912876280" CREATED="1434018436655" MODIFIED="1438436533657">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="School buses can be added" ID="ID_117411937" CREATED="1434017826975" MODIFIED="1438114061577">
+<node TEXT="School buses can be added" ID="ID_117411937" CREATED="1434017826975" MODIFIED="1438436533677">
 <font NAME="Dialog"/>
-<node TEXT="Increase costs for citizens to pay" ID="ID_1499339992" CREATED="1434017832751" MODIFIED="1438114061578">
+<node TEXT="Increase costs for citizens to pay" ID="ID_1499339992" CREATED="1434017832751" MODIFIED="1438436533674">
 <font NAME="Dialog"/>
-<node TEXT="Not all may effort this and came on foot to school" ID="ID_537879416" CREATED="1434018519200" MODIFIED="1438114061579">
+<node TEXT="Not all may effort this and came on foot to school" ID="ID_537879416" CREATED="1434018519200" MODIFIED="1438436533667">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="May decrease happiness for poor citizens" ID="ID_578447804" CREATED="1434018534959" MODIFIED="1438114061580">
+<node TEXT="May decrease happiness for poor citizens" ID="ID_578447804" CREATED="1434018534959" MODIFIED="1438436533670">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="May increase happiness for richer citizens" ID="ID_711024047" CREATED="1434018544864" MODIFIED="1438114061581">
+<node TEXT="May increase happiness for richer citizens" ID="ID_711024047" CREATED="1434018544864" MODIFIED="1438436533673">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="May be free of charge, if player decides" ID="ID_806610481" CREATED="1434017845151" MODIFIED="1438114061581">
+<node TEXT="May be free of charge, if player decides" ID="ID_806610481" CREATED="1434017845151" MODIFIED="1438436533692">
 <font NAME="Dialog"/>
-<node TEXT="Effortable for all citizens" ID="ID_1436653692" CREATED="1434017859007" MODIFIED="1438114061582">
+<node TEXT="Effortable for all citizens" ID="ID_1436653692" CREATED="1434017859007" MODIFIED="1438436533679">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Can be expensive to pay (for player)" ID="ID_1104064207" CREATED="1434017865247" MODIFIED="1438114061583">
+<node TEXT="Can be expensive to pay (for player)" ID="ID_1104064207" CREATED="1434017865247" MODIFIED="1438436533686">
 <font NAME="Dialog"/>
-<node TEXT="Price increase with number of students" ID="ID_328092439" CREATED="1434018630368" MODIFIED="1438114061584">
+<node TEXT="Price increase with number of students" ID="ID_328092439" CREATED="1434018630368" MODIFIED="1438436533685">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Increases happiness for allcitizens being educated at that school" ID="ID_1200760531" CREATED="1434017883663" MODIFIED="1438114061585">
+<node TEXT="Increases happiness for allcitizens being educated at that school" ID="ID_1200760531" CREATED="1434017883663" MODIFIED="1438436533688">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Will be a policy" ID="ID_515716963" CREATED="1434017889679" MODIFIED="1438114061586">
+<node TEXT="Will be a policy" ID="ID_515716963" CREATED="1434017889679" MODIFIED="1438436533691">
 <icon BUILTIN="idea"/>
 <icon BUILTIN="yes"/>
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Teacher need to be added" ID="ID_964413606" CREATED="1434017918559" MODIFIED="1438114061586">
+<node TEXT="Teacher need to be added" ID="ID_964413606" CREATED="1434017918559" MODIFIED="1438436533708">
 <icon BUILTIN="idea"/>
 <icon BUILTIN="messagebox_warning"/>
 <font NAME="Dialog"/>
-<node TEXT="Allows more citizens to work" ID="ID_818411655" CREATED="1434017934447" MODIFIED="1438114061587">
+<node TEXT="Allows more citizens to work" ID="ID_818411655" CREATED="1434017934447" MODIFIED="1438436533698">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Flexible style of school system" ID="ID_1294630717" CREATED="1434017945071" MODIFIED="1438114061588">
+<node TEXT="Flexible style of school system" ID="ID_1294630717" CREATED="1434017945071" MODIFIED="1438436533701">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Increase effectiveness" ID="ID_1947153681" CREATED="1434017953551" MODIFIED="1438114061589">
+<node TEXT="Increase effectiveness" ID="ID_1947153681" CREATED="1434017953551" MODIFIED="1438436533704">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Demands salary (player pays)" ID="ID_1088717022" CREATED="1434017967983" MODIFIED="1438114061590">
+<node TEXT="Demands salary (player pays)" ID="ID_1088717022" CREATED="1434017967983" MODIFIED="1438436533707">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Education level" ID="ID_1308538480" CREATED="1434018839616" MODIFIED="1438114061591">
+<node TEXT="Education level" ID="ID_1308538480" CREATED="1434018839616" MODIFIED="1438436533724">
 <font NAME="Dialog"/>
-<node TEXT="Is not a fixed number or step" ID="ID_1926130676" CREATED="1434018844641" MODIFIED="1438114061591">
+<node TEXT="Is not a fixed number or step" ID="ID_1926130676" CREATED="1434018844641" MODIFIED="1438436533713">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Is being added to a maximum value depending on school type" ID="ID_1966882003" CREATED="1434018851792" MODIFIED="1438114061592">
+<node TEXT="Is being added to a maximum value depending on school type" ID="ID_1966882003" CREATED="1434018851792" MODIFIED="1438436533716">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="AECs can add a few points" ID="ID_1136640253" CREATED="1434019000960" MODIFIED="1438114061593">
+<node TEXT="AECs can add a few points" ID="ID_1136640253" CREATED="1434019000960" MODIFIED="1438436533720">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Better jobs with higher level" ID="ID_1006021660" CREATED="1434019037658" MODIFIED="1438114061594">
+<node TEXT="Better jobs with higher level" ID="ID_1006021660" CREATED="1434019037658" MODIFIED="1438436533733">
 <font NAME="Dialog"/>
-<node TEXT="Higher income for citizen" ID="ID_608230469" CREATED="1434019054240" MODIFIED="1438114061595">
+<node TEXT="Higher income for citizen" ID="ID_608230469" CREATED="1434019054240" MODIFIED="1438436533726">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Increases taxes being payed by citizen" ID="ID_615438821" CREATED="1434019063568" MODIFIED="1438114061596">
+<node TEXT="Increases taxes being payed by citizen" ID="ID_615438821" CREATED="1434019063568" MODIFIED="1438436533729">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Lowers garbage production" ID="ID_1735209055" CREATED="1434019130834" MODIFIED="1438114061596">
+<node TEXT="Lowers garbage production" ID="ID_1735209055" CREATED="1434019130834" MODIFIED="1438436533732">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
 </node>
-<node TEXT="Educational levels" ID="ID_431123105" CREATED="1434040140996" MODIFIED="1438114061597">
+<node TEXT="Educational levels" ID="ID_431123105" CREATED="1434040140996" MODIFIED="1438436533752">
 <font NAME="Dialog"/>
-<node TEXT="Untrained" ID="ID_369637539" CREATED="1434040146580" MODIFIED="1438114061598">
+<node TEXT="Untrained" ID="ID_369637539" CREATED="1434040146580" MODIFIED="1438436533738">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Trained" ID="ID_92010317" CREATED="1434040150324" MODIFIED="1438114061599">
+<node TEXT="Trained" ID="ID_92010317" CREATED="1434040150324" MODIFIED="1438436533742">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Semi-professional" ID="ID_652087192" CREATED="1434040185940" MODIFIED="1438114061600">
+<node TEXT="Semi-professional" ID="ID_652087192" CREATED="1434040185940" MODIFIED="1438436533745">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Professional" ID="ID_1879803129" CREATED="1434040190276" MODIFIED="1438114061601">
+<node TEXT="Professional" ID="ID_1879803129" CREATED="1434040190276" MODIFIED="1438436533748">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Master" ID="ID_990682293" CREATED="1434040194532" MODIFIED="1438114061602">
+<node TEXT="Master" ID="ID_990682293" CREATED="1434040194532" MODIFIED="1438436533751">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Elementary school" ID="ID_1432972480" CREATED="1434017328094" MODIFIED="1438114061602">
+<node TEXT="Elementary school" ID="ID_1432972480" CREATED="1434017328094" MODIFIED="1438436533762">
 <font NAME="Dialog"/>
-<node TEXT="All people can effort this" ID="ID_1960969305" CREATED="1434017565039" MODIFIED="1438114061603">
+<node TEXT="All people can effort this" ID="ID_1960969305" CREATED="1434017565039" MODIFIED="1438436533758">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Low education level" ID="ID_1296821770" CREATED="1434017572319" MODIFIED="1438114061604">
+<node TEXT="Low education level" ID="ID_1296821770" CREATED="1434017572319" MODIFIED="1438436533761">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="High school" ID="ID_1817654556" CREATED="1434017335966" MODIFIED="1438114061605">
+<node TEXT="High school" ID="ID_1817654556" CREATED="1434017335966" MODIFIED="1438436533775">
 <font NAME="Dialog"/>
-<node TEXT="All (*) people can effort this" ID="ID_1302710425" CREATED="1434017582783" MODIFIED="1438114061606">
+<node TEXT="All (*) people can effort this" ID="ID_1302710425" CREATED="1434017582783" MODIFIED="1438436533772">
 <font NAME="Dialog"/>
-<node TEXT="Poor people can ask for support" ID="ID_318868269" CREATED="1434017609247" MODIFIED="1438114061607">
+<node TEXT="Poor people can ask for support" ID="ID_318868269" CREATED="1434017609247" MODIFIED="1438436533771">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Medium education level" ID="ID_1942986587" CREATED="1434017630975" MODIFIED="1438114061607">
+<node TEXT="Medium education level" ID="ID_1942986587" CREATED="1434017630975" MODIFIED="1438436533774">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="College" ID="ID_1396424248" CREATED="1434017340942" MODIFIED="1438114061608">
+<node TEXT="College" ID="ID_1396424248" CREATED="1434017340942" MODIFIED="1438436533789">
 <font NAME="Dialog"/>
-<node TEXT="Not all (richer) people can effort this" ID="ID_1185441977" CREATED="1434017641967" MODIFIED="1438114061609">
+<node TEXT="Not all (richer) people can effort this" ID="ID_1185441977" CREATED="1434017641967" MODIFIED="1438436533784">
 <font NAME="Dialog"/>
-<node TEXT="Poor people can ask for support" ID="ID_193800516" CREATED="1434017691279" MODIFIED="1438114061610">
+<node TEXT="Poor people can ask for support" ID="ID_193800516" CREATED="1434017691279" MODIFIED="1438436533783">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="High education level" ID="ID_1155171204" CREATED="1434017657631" MODIFIED="1438114061611">
+<node TEXT="High education level" ID="ID_1155171204" CREATED="1434017657631" MODIFIED="1438436533786">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="University" ID="ID_9710802" CREATED="1434017358159" MODIFIED="1438114061612">
+<node TEXT="University" ID="ID_9710802" CREATED="1434017358159" MODIFIED="1438436533801">
 <font NAME="Dialog"/>
-<node TEXT="Only rich people can effort this" ID="ID_1637372813" CREATED="1434017663631" MODIFIED="1438114061612">
+<node TEXT="Only rich people can effort this" ID="ID_1637372813" CREATED="1434017663631" MODIFIED="1438436533798">
 <font NAME="Dialog"/>
-<node TEXT="Poor people can ask for support" ID="ID_611178824" CREATED="1434017678575" MODIFIED="1438114061613">
+<node TEXT="Poor people can ask for support" ID="ID_611178824" CREATED="1434017678575" MODIFIED="1438436533798">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Very high education level" ID="ID_873325230" CREATED="1434017704847" MODIFIED="1438114061614">
+<node TEXT="Very high education level" ID="ID_873325230" CREATED="1434017704847" MODIFIED="1438436533800">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Adult education center" ID="ID_1419619709" CREATED="1434018318639" MODIFIED="1438114061615">
+<node TEXT="Adult education center" ID="ID_1419619709" CREATED="1434018318639" MODIFIED="1438436533814">
 <font NAME="Dialog"/>
-<node TEXT="Price varries (random value within range)" ID="ID_588063333" CREATED="1434018347759" MODIFIED="1438114061616">
+<node TEXT="Price varries (random value within range)" ID="ID_588063333" CREATED="1434018347759" MODIFIED="1438436533807">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Medium education level" ID="ID_971190417" CREATED="1434018417711" MODIFIED="1438114061616">
+<node TEXT="Medium education level" ID="ID_971190417" CREATED="1434018417711" MODIFIED="1438436533810">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="AEC" ID="ID_632175915" CREATED="1434018974416" MODIFIED="1438114061617">
+<node TEXT="AEC" ID="ID_632175915" CREATED="1434018974416" MODIFIED="1438436533813">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Public transportation" ID="ID_1499291136" CREATED="1434019515424" MODIFIED="1438114061618">
+<node TEXT="Public transportation" ID="ID_1499291136" CREATED="1434019515424" MODIFIED="1438436533816">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_292276018" STARTINCLINATION="1919;0;" ENDINCLINATION="1919;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
-<node TEXT="Health care" ID="ID_150347791" CREATED="1434036488369" MODIFIED="1438114061619">
+<node TEXT="Health care" ID="ID_150347791" CREATED="1434036488369" MODIFIED="1438436533882">
 <font NAME="Dialog"/>
-<node TEXT="Buildings" ID="ID_898545196" CREATED="1434036699809" MODIFIED="1438114061620">
+<node TEXT="Buildings" ID="ID_898545196" CREATED="1434036699809" MODIFIED="1438436533867">
 <font NAME="Dialog"/>
-<node TEXT="General" ID="ID_95052963" CREATED="1434037006049" MODIFIED="1438114061621">
+<node TEXT="General" ID="ID_95052963" CREATED="1434037006049" MODIFIED="1438436533832">
 <font NAME="Dialog"/>
-<node TEXT="Affects area around them" ID="ID_94217429" CREATED="1434037010705" MODIFIED="1438114061622">
+<node TEXT="Affects area around them" ID="ID_94217429" CREATED="1434037010705" MODIFIED="1438436533828">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="May require to add vehicles to it" ID="ID_101686609" CREATED="1434037023265" MODIFIED="1438114061622">
+<node TEXT="May require to add vehicles to it" ID="ID_101686609" CREATED="1434037023265" MODIFIED="1438436533831">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Pharmacy" ID="ID_264695349" CREATED="1434036634497" MODIFIED="1438114061623">
+<node TEXT="Pharmacy" ID="ID_264695349" CREATED="1434036634497" MODIFIED="1438436533848">
 <font NAME="Dialog"/>
-<node TEXT="Small health care" ID="ID_1575610784" CREATED="1434038883731" MODIFIED="1438114061624">
+<node TEXT="Small health care" ID="ID_1575610784" CREATED="1434038883731" MODIFIED="1438436533838">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Small area affected (happiness)" ID="ID_19930045" CREATED="1434038900851" MODIFIED="1438114061625">
+<node TEXT="Small area affected (happiness)" ID="ID_19930045" CREATED="1434038900851" MODIFIED="1438436533841">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="No vehicles addable" ID="ID_188715948" CREATED="1434038908195" MODIFIED="1438114061626">
+<node TEXT="No vehicles addable" ID="ID_188715948" CREATED="1434038908195" MODIFIED="1438436533844">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="No helicopter pad" ID="ID_66426588" CREATED="1434039051683" MODIFIED="1438114061627">
+<node TEXT="No helicopter pad" ID="ID_66426588" CREATED="1434039051683" MODIFIED="1438436533847">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Local doctor" ID="ID_970807266" CREATED="1434036585073" MODIFIED="1438114061627">
+<node TEXT="Local doctor" ID="ID_970807266" CREATED="1434036585073" MODIFIED="1438436533863">
 <font NAME="Dialog"/>
-<node TEXT="Some health care" ID="ID_1699498461" CREATED="1434038918051" MODIFIED="1438114061628">
+<node TEXT="Some health care" ID="ID_1699498461" CREATED="1434038918051" MODIFIED="1438436533853">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Some happiness increase" ID="ID_36390215" CREATED="1434038949091" MODIFIED="1438114061629">
+<node TEXT="Some happiness increase" ID="ID_36390215" CREATED="1434038949091" MODIFIED="1438436533856">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Some vehicles addable" ID="ID_204446613" CREATED="1434038977459" MODIFIED="1438114061630">
+<node TEXT="Some vehicles addable" ID="ID_204446613" CREATED="1434038977459" MODIFIED="1438436533859">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Have no helicopter pad" ID="ID_674437066" CREATED="1434039042339" MODIFIED="1438114061631">
+<node TEXT="Have no helicopter pad" ID="ID_674437066" CREATED="1434039042339" MODIFIED="1438436533862">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Hospital" ID="ID_1312084514" CREATED="1434036592273" MODIFIED="1438114061632">
+<node TEXT="Hospital" ID="ID_1312084514" CREATED="1434036592273" MODIFIED="1438436533879">
 <font NAME="Dialog"/>
-<node TEXT="Medium to large health care" ID="ID_595585490" CREATED="1434039005987" MODIFIED="1438114061632">
+<node TEXT="Medium to large health care" ID="ID_595585490" CREATED="1434039005987" MODIFIED="1438436533869">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Medium to large area affected" ID="ID_1215755550" CREATED="1434039015763" MODIFIED="1438114061633">
+<node TEXT="Medium to large area affected" ID="ID_1215755550" CREATED="1434039015763" MODIFIED="1438436533872">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Many to a lot vehicles can be added" ID="ID_566955993" CREATED="1434039025779" MODIFIED="1438114061634">
+<node TEXT="Many to a lot vehicles can be added" ID="ID_566955993" CREATED="1434039025779" MODIFIED="1438436533875">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="May have a helicopter pad" ID="ID_112684773" CREATED="1434036883473" MODIFIED="1438114061635">
+<node TEXT="May have a helicopter pad" ID="ID_112684773" CREATED="1434036883473" MODIFIED="1438436533878">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Vehicles" ID="ID_57325638" CREATED="1434036708225" MODIFIED="1438114061636">
+<node TEXT="Vehicles" ID="ID_57325638" CREATED="1434036708225" MODIFIED="1438436533888">
 <font NAME="Dialog"/>
-<node TEXT="Ambulance" ID="ID_1896508874" CREATED="1434036732529" MODIFIED="1438114061637">
+<node TEXT="Ambulance" ID="ID_1896508874" CREATED="1434036732529" MODIFIED="1438436533884">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Rescue helicopter" ID="ID_657374576" CREATED="1434036870113" MODIFIED="1438114061637">
+<node TEXT="Rescue helicopter" ID="ID_657374576" CREATED="1434036870113" MODIFIED="1438436533887">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Death care" ID="ID_765478801" CREATED="1434036496689" MODIFIED="1438114061638">
+<node TEXT="Death care" ID="ID_765478801" CREATED="1434036496689" MODIFIED="1438436533903">
 <font NAME="Dialog"/>
-<node TEXT="Buildings" ID="ID_117631702" CREATED="1434036743473" MODIFIED="1438114061639">
+<node TEXT="Buildings" ID="ID_117631702" CREATED="1434036743473" MODIFIED="1438436533900">
 <font NAME="Dialog"/>
-<node TEXT="Cemetery" ID="ID_1904410229" CREATED="1434036777265" MODIFIED="1438114061640">
+<node TEXT="Cemetery" ID="ID_1904410229" CREATED="1434036777265" MODIFIED="1438436533896">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Crematory" ID="ID_274023782" CREATED="1434036782769" MODIFIED="1438114061641">
+<node TEXT="Crematory" ID="ID_274023782" CREATED="1434036782769" MODIFIED="1438436533899">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Vehicles" ID="ID_1462497885" CREATED="1434036746353" MODIFIED="1438114061641">
+<node TEXT="Vehicles" ID="ID_1462497885" CREATED="1434036746353" MODIFIED="1438436533906">
 <font NAME="Dialog"/>
-<node TEXT="Hearse" ID="ID_693320560" CREATED="1434036756961" MODIFIED="1438114061642">
+<node TEXT="Hearse" ID="ID_693320560" CREATED="1434036756961" MODIFIED="1438436533905">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Religion service" ID="ID_414561380" CREATED="1434038623283" MODIFIED="1438114061643">
+<node TEXT="Religion service" ID="ID_414561380" CREATED="1434038623283" MODIFIED="1438436533930">
 <font NAME="Dialog"/>
-<node TEXT="Church" ID="ID_74920368" CREATED="1434038633395" MODIFIED="1438114061644">
+<node TEXT="Church" ID="ID_74920368" CREATED="1434038633395" MODIFIED="1438436533927">
 <font NAME="Dialog"/>
-<node TEXT="Minimum size 2x2" ID="ID_273761948" CREATED="1434038750867" MODIFIED="1438114061645">
+<node TEXT="Minimum size 2x2" ID="ID_273761948" CREATED="1434038750867" MODIFIED="1438436533914">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Provide some education" ID="ID_1892314765" CREATED="1434038772548" MODIFIED="1438114061645">
+<node TEXT="Provide some education" ID="ID_1892314765" CREATED="1434038772548" MODIFIED="1438436533917">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Provide some work spaces" ID="ID_1395784063" CREATED="1434038780787" MODIFIED="1438114061646">
+<node TEXT="Provide some work spaces" ID="ID_1395784063" CREATED="1434038780787" MODIFIED="1438436533920">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Low happiness increase" ID="ID_734834762" CREATED="1434038814323" MODIFIED="1438114061647">
+<node TEXT="Low happiness increase" ID="ID_734834762" CREATED="1434038814323" MODIFIED="1438436533923">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Small area affected" ID="ID_1346307714" CREATED="1434038827587" MODIFIED="1438114061648">
+<node TEXT="Small area affected" ID="ID_1346307714" CREATED="1434038827587" MODIFIED="1438436533926">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Cathedral" ID="ID_124291419" CREATED="1434038649235" MODIFIED="1438114061649">
+<node TEXT="Cathedral" ID="ID_124291419" CREATED="1434038649235" MODIFIED="1438436533946">
 <font NAME="Dialog"/>
-<node TEXT="Minimum size 5x5" ID="ID_1729072839" CREATED="1434038788499" MODIFIED="1438114061650">
+<node TEXT="Minimum size 5x5" ID="ID_1729072839" CREATED="1434038788499" MODIFIED="1438436533933">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Provide more education" ID="ID_1677813842" CREATED="1434038795332" MODIFIED="1438114061650">
+<node TEXT="Provide more education" ID="ID_1677813842" CREATED="1434038795332" MODIFIED="1438436533936">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Provide more work space" ID="ID_1307306815" CREATED="1434038805299" MODIFIED="1438114061651">
+<node TEXT="Provide more work space" ID="ID_1307306815" CREATED="1434038805299" MODIFIED="1438436533939">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Medium happiness increase" ID="ID_1301965573" CREATED="1434038834387" MODIFIED="1438114061652">
+<node TEXT="Medium happiness increase" ID="ID_1301965573" CREATED="1434038834387" MODIFIED="1438436533942">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Medium area affected" ID="ID_1019146728" CREATED="1434038844851" MODIFIED="1438114061653">
+<node TEXT="Medium area affected" ID="ID_1019146728" CREATED="1434038844851" MODIFIED="1438436533945">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Baby care" ID="ID_1442350225" CREATED="1434040581397" MODIFIED="1438114061654">
+<node TEXT="Baby care" ID="ID_1442350225" CREATED="1434040581397" MODIFIED="1438436533955">
 <font NAME="Dialog"/>
-<node TEXT="Is basicly a kindergarden" ID="ID_647174903" CREATED="1434040587605" MODIFIED="1438114061654">
+<node TEXT="Is basicly a kindergarden" ID="ID_647174903" CREATED="1434040587605" MODIFIED="1438436533951">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Provides some work space" ID="ID_1022007880" CREATED="1434040600981" MODIFIED="1438114061655">
+<node TEXT="Provides some work space" ID="ID_1022007880" CREATED="1434040600981" MODIFIED="1438436533954">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Privately funded services" ID="ID_1015570882" CREATED="1434017311294" MODIFIED="1438114061656">
+<node TEXT="Privately funded services" ID="ID_1015570882" CREATED="1434017311294" MODIFIED="1438436533961">
 <font NAME="Dialog"/>
-<node TEXT="Private school" ID="ID_331881607" CREATED="1434017531489" MODIFIED="1438114061657">
+<node TEXT="Private school" ID="ID_331881607" CREATED="1434017531489" MODIFIED="1438436533976">
 <font NAME="Dialog"/>
-<node TEXT="Very expensive for citizens" ID="ID_299904480" CREATED="1434018200479" MODIFIED="1438114061658">
+<node TEXT="Very expensive for citizens" ID="ID_299904480" CREATED="1434018200479" MODIFIED="1438436533970">
 <font NAME="Dialog"/>
-<node TEXT="Only rich people can effort this" ID="ID_934001553" CREATED="1434017537055" MODIFIED="1438114061659">
+<node TEXT="Only rich people can effort this" ID="ID_934001553" CREATED="1434017537055" MODIFIED="1438436533966">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="No support by government for poor people" ID="ID_1365072724" CREATED="1434018214335" MODIFIED="1438114061659">
+<node TEXT="No support by government for poor people" ID="ID_1365072724" CREATED="1434018214335" MODIFIED="1438436533969">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Very high education level" ID="ID_532051501" CREATED="1434017553807" MODIFIED="1438114061660">
+<node TEXT="Very high education level" ID="ID_532051501" CREATED="1434017553807" MODIFIED="1438436533972">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="No need to go to public schools as this school provides all" ID="ID_358623364" CREATED="1434018895424" MODIFIED="1438114061661">
+<node TEXT="No need to go to public schools as this school provides all" ID="ID_358623364" CREATED="1434018895424" MODIFIED="1438436533975">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Tourist attractions" ID="ID_1447003413" CREATED="1434025209190" MODIFIED="1438114061662">
+<node TEXT="Tourist attractions" ID="ID_1447003413" CREATED="1434025209190" MODIFIED="1438436533978">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="&quot;Micro management&quot;" ID="ID_828275656" CREATED="1434014315435" MODIFIED="1438114061663">
+<node TEXT="&quot;Micro management&quot;" ID="ID_828275656" CREATED="1434014315435" MODIFIED="1438436534080">
 <font NAME="Dialog" SIZE="12" BOLD="true"/>
-<node TEXT="Citizen" ID="ID_1004200246" CREATED="1434014367548" MODIFIED="1438114061663">
+<node TEXT="Citizen" ID="ID_1004200246" CREATED="1434014367548" MODIFIED="1438436533998">
 <font NAME="Dialog"/>
-<node TEXT="Policies can NOT be applied" ID="ID_763770860" CREATED="1434014925948" MODIFIED="1438114061664">
+<node TEXT="Policies can NOT be applied" ID="ID_763770860" CREATED="1434014925948" MODIFIED="1438436533988">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Is a single person" ID="ID_1810304365" CREATED="1434014507644" MODIFIED="1438114061665">
+<node TEXT="Is a single person" ID="ID_1810304365" CREATED="1434014507644" MODIFIED="1438436533991">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Every citizen will be simulated" ID="ID_95495661" CREATED="1434014514284" MODIFIED="1438114061666">
+<node TEXT="Every citizen will be simulated" ID="ID_95495661" CREATED="1434014514284" MODIFIED="1438436533994">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Have specific needs that needs to be satisfied" ID="ID_385136740" CREATED="1434014529228" MODIFIED="1438114061667">
+<node TEXT="Have specific needs that needs to be satisfied" ID="ID_385136740" CREATED="1434014529228" MODIFIED="1438436534004">
 <font NAME="Dialog"/>
-<node TEXT="&quot;Sims&quot; simulation is not wanted" ID="ID_1782033848" CREATED="1434014554956" MODIFIED="1438114061668">
+<node TEXT="&quot;Sims&quot; simulation is not wanted" ID="ID_1782033848" CREATED="1434014554956" MODIFIED="1438436534000">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Must be related to city growth" ID="ID_385718747" CREATED="1434014565628" MODIFIED="1438114061668">
+<node TEXT="Must be related to city growth" ID="ID_385718747" CREATED="1434014565628" MODIFIED="1438436534003">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Household" ID="ID_735520197" CREATED="1434014361599" MODIFIED="1438114061669">
+<node TEXT="Household" ID="ID_735520197" CREATED="1434014361599" MODIFIED="1438436534014">
 <font NAME="Dialog"/>
-<node TEXT="Policies can NOT be applied" ID="ID_1797452308" CREATED="1434014923628" MODIFIED="1438114061670">
+<node TEXT="Policies can NOT be applied" ID="ID_1797452308" CREATED="1434014923628" MODIFIED="1438436534010">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Consists of one or more citizens" ID="ID_1502235078" CREATED="1434014587868" MODIFIED="1438114061671">
+<node TEXT="Consists of one or more citizens" ID="ID_1502235078" CREATED="1434014587868" MODIFIED="1438436534013">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Residential building" ID="ID_1334966669" CREATED="1434014373836" MODIFIED="1438114061672">
+<node TEXT="Residential building" ID="ID_1334966669" CREATED="1434014373836" MODIFIED="1438436534033">
 <font NAME="Dialog"/>
-<node TEXT="Policies can NOT be applied" ID="ID_1482958828" CREATED="1434014914044" MODIFIED="1438114061673">
+<node TEXT="Policies can NOT be applied" ID="ID_1482958828" CREATED="1434014914044" MODIFIED="1438436534019">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Consists of one or more housholds" ID="ID_1428085368" CREATED="1434014662860" MODIFIED="1438114061673">
+<node TEXT="Consists of one or more housholds" ID="ID_1428085368" CREATED="1434014662860" MODIFIED="1438436534022">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Is a simple accommodation at the start" ID="ID_1083737115" CREATED="1434014690380" MODIFIED="1438114061674">
+<node TEXT="Is a simple accommodation at the start" ID="ID_1083737115" CREATED="1434014690380" MODIFIED="1438436534026">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="May be upgraded by its citizens depending on increased needs" ID="ID_788995569" CREATED="1434014727804" MODIFIED="1438114061675">
+<node TEXT="May be upgraded by its citizens depending on increased needs" ID="ID_788995569" CREATED="1434014727804" MODIFIED="1438436534029">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Must be connected to water/waste/electricity supply" ID="ID_679686952" CREATED="1434014748492" MODIFIED="1438114061676">
+<node TEXT="Must be connected to water/waste/electricity supply" ID="ID_679686952" CREATED="1434014748492" MODIFIED="1438436534039">
 <font NAME="Dialog"/>
-<node TEXT="These supplies don&apos;t have &quot;influence&quot; area" ID="ID_797960562" CREATED="1434014769596" MODIFIED="1438114061677">
+<node TEXT="These supplies don&apos;t have &quot;influence&quot; area" ID="ID_797960562" CREATED="1434014769596" MODIFIED="1438436534035">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="And they are not distributed from house-to-house or by nearby street" ID="ID_1164024002" CREATED="1434014788188" MODIFIED="1438114061678">
+<node TEXT="And they are not distributed from house-to-house or by nearby street" ID="ID_1164024002" CREATED="1434014788188" MODIFIED="1438436534038">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="District" ID="ID_1406061156" CREATED="1434014486924" MODIFIED="1438114061678">
+<node TEXT="District" ID="ID_1406061156" CREATED="1434014486924" MODIFIED="1438436534052">
 <font NAME="Dialog"/>
-<node TEXT="Policies can be applied" ID="ID_1619430713" CREATED="1434014880204" MODIFIED="1438114061679">
+<node TEXT="Policies can be applied" ID="ID_1619430713" CREATED="1434014880204" MODIFIED="1438436534044">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Consists of one or more roads/rails/buildings" ID="ID_468838152" CREATED="1434038516995" MODIFIED="1438114061680">
+<node TEXT="Consists of one or more roads/rails/buildings" ID="ID_468838152" CREATED="1434038516995" MODIFIED="1438436534047">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Are not needed to add" ID="ID_982799002" CREATED="1434038555459" MODIFIED="1438114061681">
+<node TEXT="Are not needed to add" ID="ID_982799002" CREATED="1434038555459" MODIFIED="1438436534051">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="City" ID="ID_1035342204" CREATED="1434014898432" MODIFIED="1438114061682">
+<node TEXT="City" ID="ID_1035342204" CREATED="1434014898432" MODIFIED="1438436534064">
 <font NAME="Dialog"/>
-<node TEXT="Policies can be applied" ID="ID_1018450152" CREATED="1434014908012" MODIFIED="1438114061682">
+<node TEXT="Policies can be applied" ID="ID_1018450152" CREATED="1434014908012" MODIFIED="1438436534057">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Consists of one or more districts/roads/rails/buildings" ID="ID_909926820" CREATED="1434038534035" MODIFIED="1438114061683">
+<node TEXT="Consists of one or more districts/roads/rails/buildings" ID="ID_909926820" CREATED="1434038534035" MODIFIED="1438436534060">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Are needed to add ..." ID="ID_644418266" CREATED="1434041519590" MODIFIED="1438114061684">
+<node TEXT="Are needed to add ..." ID="ID_644418266" CREATED="1434041519590" MODIFIED="1438436534063">
 <icon BUILTIN="smiley-oh"/>
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Region" ID="ID_1101054364" CREATED="1434014933420" MODIFIED="1438114061685">
+<node TEXT="Region" ID="ID_1101054364" CREATED="1434014933420" MODIFIED="1438436534077">
 <font NAME="Dialog"/>
-<node TEXT="Policies can be applied" ID="ID_1234326443" CREATED="1434014908012" MODIFIED="1438114061686">
+<node TEXT="Policies can be applied" ID="ID_1234326443" CREATED="1434014908012" MODIFIED="1438436534069">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Consists of one or more cities" ID="ID_1417883101" CREATED="1434038568499" MODIFIED="1438114061687">
+<node TEXT="Consists of one or more cities" ID="ID_1417883101" CREATED="1434038568499" MODIFIED="1438436534072">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Initial region is added automatically" ID="ID_126862974" CREATED="1434041554325" MODIFIED="1438114061687">
+<node TEXT="Initial region is added automatically" ID="ID_126862974" CREATED="1434041554325" MODIFIED="1438436534076">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="&quot;World&quot;" ID="ID_1184467738" CREATED="1434014981516" MODIFIED="1438114061688">
+<node TEXT="&quot;World&quot;" ID="ID_1184467738" CREATED="1434014981516" MODIFIED="1438436534089">
 <font NAME="Dialog"/>
-<node TEXT="Policies can NOT be applied" ID="ID_1519032354" CREATED="1434014908012" MODIFIED="1438114061689">
+<node TEXT="Policies can NOT be applied" ID="ID_1519032354" CREATED="1434014908012" MODIFIED="1438436534082">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Consists of one or more regions" ID="ID_1330121222" CREATED="1434038578099" MODIFIED="1438114061690">
+<node TEXT="Consists of one or more regions" ID="ID_1330121222" CREATED="1434038578099" MODIFIED="1438436534085">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="No real entity in simulation" ID="ID_348584510" CREATED="1434041568389" MODIFIED="1438114061691">
+<node TEXT="No real entity in simulation" ID="ID_348584510" CREATED="1434041568389" MODIFIED="1438436534088">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Happiness &quot;management&quot;" ID="ID_88101134" CREATED="1434015242076" MODIFIED="1438114061691">
+<node TEXT="Happiness &quot;management&quot;" ID="ID_88101134" CREATED="1434015242076" MODIFIED="1438436534091">
 <font NAME="Dialog" SIZE="12" BOLD="true"/>
 </node>
-<node TEXT="Game data structure" ID="ID_586579521" CREATED="1434014840796" MODIFIED="1438114061692">
+<node TEXT="Game data structure" ID="ID_586579521" CREATED="1434014840796" MODIFIED="1438436534095">
 <font NAME="Dialog" SIZE="12" BOLD="true"/>
+<node TEXT="Data organization units" ID="ID_33727131" CREATED="1438436905073" MODIFIED="1438436919086">
+<node TEXT="Unit &apos;world&apos;" ID="ID_996330464" CREATED="1438437082625" MODIFIED="1438437086334">
+<node TEXT="Does not exist in game" ID="ID_1519204593" CREATED="1438437087282" MODIFIED="1438437092302"/>
+</node>
+<node TEXT="Unit &apos;region&apos;" ID="ID_647913433" CREATED="1438437039921" MODIFIED="1438437043566">
+<node TEXT="One or more cities form a region" ID="ID_991952891" CREATED="1438437095345" MODIFIED="1438437117566"/>
+<node TEXT="See table &apos;region_data&apos;" ID="ID_691341820" CREATED="1438437220402" MODIFIED="1438437240692">
+<arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_565474444" STARTINCLINATION="3008;0;" ENDINCLINATION="3008;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
+</node>
+</node>
+<node TEXT="Unit &apos;city&apos;" ID="ID_1451106937" CREATED="1438436920241" MODIFIED="1438436924894">
+<node TEXT="See table &apos;city_data&apos;" ID="ID_1480071259" CREATED="1438437198530" MODIFIED="1438437212315">
+<arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_1517130846" STARTINCLINATION="3541;0;" ENDINCLINATION="3541;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
+</node>
+</node>
+<node TEXT="Unit &apos;district&apos;" ID="ID_1138162404" CREATED="1438437261122" MODIFIED="1438437264702">
+<node TEXT="Forms one or more lots to a district" ID="ID_772634161" CREATED="1438437266594" MODIFIED="1438437280158"/>
+</node>
+<node TEXT="Unit &apos;lot&apos;" ID="ID_1043990353" CREATED="1438436926897" MODIFIED="1438436932814">
+<node TEXT="Forms one or more sections into a lot" ID="ID_234768699" CREATED="1438436337825" MODIFIED="1438437016974">
+<node TEXT="A lot can consist of &lt;n&gt; sections but not otherwise ..." ID="ID_96187654" CREATED="1438436361153" MODIFIED="1438437028926">
+<icon BUILTIN="messagebox_warning"/>
+</node>
+</node>
+<node TEXT="See table &apos;city_lots&apos;" ID="ID_81472980" CREATED="1438437131599" MODIFIED="1438437151253">
+<arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_186566294" STARTINCLINATION="3483;0;" ENDINCLINATION="3483;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
+</node>
+</node>
+<node TEXT="Unit &apos;section&apos;" ID="ID_1083453830" CREATED="1438436933233" MODIFIED="1438436938430">
+<node TEXT="Smallest unit" ID="ID_920579573" CREATED="1438436939217" MODIFIED="1438436944430"/>
+<node TEXT="See table &apos;city_sections&apos;" ID="ID_1389518571" CREATED="1438437167026" MODIFIED="1438437184331">
+<arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_687749514" STARTINCLINATION="3326;0;" ENDINCLINATION="3326;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
+</node>
+<node TEXT="Can have a type and a sub type" ID="ID_584802779" CREATED="1438436945329" MODIFIED="1438436959774"/>
+<node TEXT="Can have &quot;neighbors&quot;" ID="ID_404977734" CREATED="1438436961041" MODIFIED="1438436966878">
+<node TEXT="These are sections that belong to this section" ID="ID_1879448304" CREATED="1438436967329" MODIFIED="1438436976958"/>
+<node TEXT="Complex forms are possible" ID="ID_568312620" CREATED="1438436983265" MODIFIED="1438436989438"/>
+</node>
+</node>
+</node>
 </node>
-<node TEXT="Citizens" ID="ID_1083369035" CREATED="1434045162153" MODIFIED="1438114061693">
+<node TEXT="Citizens" ID="ID_1083369035" CREATED="1434045162153" MODIFIED="1438436534127">
 <font NAME="Dialog"/>
-<node TEXT="General" ID="ID_1206904022" CREATED="1434042125510" MODIFIED="1438114061694">
+<node TEXT="General" ID="ID_1206904022" CREATED="1434042125510" MODIFIED="1438436534108">
 <font NAME="Dialog"/>
-<node TEXT="Male/female household is required for reproduction" ID="ID_665401034" CREATED="1434042129542" MODIFIED="1438114061695">
+<node TEXT="Male/female household is required for reproduction" ID="ID_665401034" CREATED="1434042129542" MODIFIED="1438436534104">
 <icon BUILTIN="family"/>
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Same-gender household possible" ID="ID_1734350367" CREATED="1434042146566" MODIFIED="1438114061696">
+<node TEXT="Same-gender household possible" ID="ID_1734350367" CREATED="1434042146566" MODIFIED="1438436534111">
 <font NAME="Dialog"/>
-<node TEXT="Won&apos;t reproduce" ID="ID_1492047085" CREATED="1434042169286" MODIFIED="1438114061696">
+<node TEXT="Won&apos;t reproduce" ID="ID_1492047085" CREATED="1434042169286" MODIFIED="1438436534110">
 <icon BUILTIN="messagebox_warning"/>
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Genders" ID="ID_72847822" CREATED="1434041362709" MODIFIED="1438114061697">
+<node TEXT="Genders" ID="ID_72847822" CREATED="1434041362709" MODIFIED="1438436534124">
 <font NAME="Dialog"/>
-<node TEXT="Male" ID="ID_698433029" CREATED="1434041366677" MODIFIED="1438114061698">
+<node TEXT="Male" ID="ID_698433029" CREATED="1434041366677" MODIFIED="1438436534116">
 <icon BUILTIN="male1"/>
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Female" ID="ID_318544461" CREATED="1434041368485" MODIFIED="1438114061699">
+<node TEXT="Female" ID="ID_318544461" CREATED="1434041368485" MODIFIED="1438436534119">
 <icon BUILTIN="female1"/>
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Randomly decided" ID="ID_1539009418" CREATED="1434041462277" MODIFIED="1438114061700">
+<node TEXT="Randomly decided" ID="ID_1539009418" CREATED="1434041462277" MODIFIED="1438436534123">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Age stages" ID="ID_606592711" CREATED="1434040394132" MODIFIED="1438114061701">
+<node TEXT="Age stages" ID="ID_606592711" CREATED="1434040394132" MODIFIED="1438436534186">
 <font NAME="Dialog"/>
-<node TEXT="Baby" ID="ID_856844960" CREATED="1434040499269" MODIFIED="1438114061701">
+<node TEXT="Baby" ID="ID_856844960" CREATED="1434040499269" MODIFIED="1438436534136">
 <font NAME="Dialog"/>
-<node TEXT="Doesn&apos;t work" ID="ID_22058343" CREATED="1434040554276" MODIFIED="1438114061702">
+<node TEXT="Doesn&apos;t work" ID="ID_22058343" CREATED="1434040554276" MODIFIED="1438436534132">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Require baby care" ID="ID_1836214164" CREATED="1434040556980" MODIFIED="1438114061703">
+<node TEXT="Require baby care" ID="ID_1836214164" CREATED="1434040556980" MODIFIED="1438436534135">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Child" ID="ID_1072321643" CREATED="1434040464106" MODIFIED="1438114061704">
+<node TEXT="Child" ID="ID_1072321643" CREATED="1434040464106" MODIFIED="1438436534146">
 <font NAME="Dialog"/>
-<node TEXT="Doesn&apos;t work" ID="ID_529506703" CREATED="1434040624421" MODIFIED="1438114061705">
+<node TEXT="Doesn&apos;t work" ID="ID_529506703" CREATED="1434040624421" MODIFIED="1438436534142">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Requires education" ID="ID_919977180" CREATED="1434040628885" MODIFIED="1438114061706">
+<node TEXT="Requires education" ID="ID_919977180" CREATED="1434040628885" MODIFIED="1438436534145">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Young adult" ID="ID_17031806" CREATED="1434040469572" MODIFIED="1438114061706">
+<node TEXT="Young adult" ID="ID_17031806" CREATED="1434040469572" MODIFIED="1438436534155">
 <font NAME="Dialog"/>
-<node TEXT="May work (low salary)" ID="ID_1637684465" CREATED="1434040647221" MODIFIED="1438114061707">
+<node TEXT="May work (low salary)" ID="ID_1637684465" CREATED="1434040647221" MODIFIED="1438436534151">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="May require education" ID="ID_1459893897" CREATED="1434040658782" MODIFIED="1438114061708">
+<node TEXT="May require education" ID="ID_1459893897" CREATED="1434040658782" MODIFIED="1438436534154">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Adult" ID="ID_1655956344" CREATED="1434040473492" MODIFIED="1438114061709">
+<node TEXT="Adult" ID="ID_1655956344" CREATED="1434040473492" MODIFIED="1438436534165">
 <font NAME="Dialog"/>
-<node TEXT="Requires work space" ID="ID_446107016" CREATED="1434040687285" MODIFIED="1438114061710">
+<node TEXT="Requires work space" ID="ID_446107016" CREATED="1434040687285" MODIFIED="1438436534160">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="May go to AEC" ID="ID_562968509" CREATED="1434040703813" MODIFIED="1438114061710">
+<node TEXT="May go to AEC" ID="ID_562968509" CREATED="1434040703813" MODIFIED="1438436534164">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_1419619709" STARTINCLINATION="1393;0;" ENDINCLINATION="1393;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
 </node>
-<node TEXT="Mature" ID="ID_44312751" CREATED="1434040476900" MODIFIED="1438114061711">
+<node TEXT="Mature" ID="ID_44312751" CREATED="1434040476900" MODIFIED="1438436534174">
 <font NAME="Dialog"/>
-<node TEXT="Requires work space" ID="ID_1967877371" CREATED="1434040745989" MODIFIED="1438114061712">
+<node TEXT="Requires work space" ID="ID_1967877371" CREATED="1434040745989" MODIFIED="1438436534170">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="May go to AEC" ID="ID_1803282555" CREATED="1434040774453" MODIFIED="1438114061713">
+<node TEXT="May go to AEC" ID="ID_1803282555" CREATED="1434040774453" MODIFIED="1438436534173">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_1419619709" STARTINCLINATION="1426;0;" ENDINCLINATION="1426;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
 </node>
-<node TEXT="Senior" ID="ID_1283243145" CREATED="1434040487956" MODIFIED="1438114061714">
+<node TEXT="Senior" ID="ID_1283243145" CREATED="1434040487956" MODIFIED="1438436534183">
 <font NAME="Dialog"/>
-<node TEXT="Doesn&apos;t work" ID="ID_738608016" CREATED="1434040752629" MODIFIED="1438114061715">
+<node TEXT="Doesn&apos;t work" ID="ID_738608016" CREATED="1434040752629" MODIFIED="1438436534179">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="No education required" ID="ID_1291717466" CREATED="1434040762949" MODIFIED="1438114061715">
+<node TEXT="No education required" ID="ID_1291717466" CREATED="1434040762949" MODIFIED="1438436534182">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Dead" ID="ID_611184679" CREATED="1434040492196" MODIFIED="1438114061716">
+<node TEXT="Dead" ID="ID_611184679" CREATED="1434040492196" MODIFIED="1438436534192">
 <font NAME="Dialog"/>
-<node TEXT="Citizen entry is removed" ID="ID_1545916243" CREATED="1434040789477" MODIFIED="1438114061717">
+<node TEXT="Citizen entry is removed" ID="ID_1545916243" CREATED="1434040789477" MODIFIED="1438436534188">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_586579521" STARTINCLINATION="371;0;" ENDINCLINATION="345;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
-<node TEXT="Counted as dead" ID="ID_1768255516" CREATED="1434040828885" MODIFIED="1438114061718">
+<node TEXT="Counted as dead" ID="ID_1768255516" CREATED="1434040828885" MODIFIED="1438436534191">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
 </node>
-<node TEXT="Government" ID="ID_1984142223" CREATED="1434043846712" MODIFIED="1438114061719">
+<node TEXT="Government" ID="ID_1984142223" CREATED="1434043846712" MODIFIED="1438436534243">
 <font NAME="Dialog"/>
-<node TEXT="Player" ID="ID_1729990522" CREATED="1434043860232" MODIFIED="1438114061719">
+<node TEXT="Player" ID="ID_1729990522" CREATED="1434043860232" MODIFIED="1438436534211">
 <font NAME="Dialog"/>
-<node TEXT="Money supply" ID="ID_1677323307" CREATED="1434044060296" MODIFIED="1438114061720">
+<node TEXT="Money supply" ID="ID_1677323307" CREATED="1434044060296" MODIFIED="1438436534208">
 <font NAME="Dialog"/>
-<node TEXT="Initial supply is free of &quot;charge&quot; (interest)" ID="ID_686436363" CREATED="1434045098233" MODIFIED="1438114061721">
+<node TEXT="Initial supply is free of &quot;charge&quot; (interest)" ID="ID_686436363" CREATED="1434045098233" MODIFIED="1438436534204">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Later supplies may contain low interest rate" ID="ID_402169832" CREATED="1434045112409" MODIFIED="1438114061722">
+<node TEXT="Later supplies may contain low interest rate" ID="ID_402169832" CREATED="1434045112409" MODIFIED="1438436534207">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Tax income" ID="ID_1758539544" CREATED="1434044095656" MODIFIED="1438114061723">
+<node TEXT="Tax income" ID="ID_1758539544" CREATED="1434044095656" MODIFIED="1438436534218">
 <font NAME="Dialog"/>
-<node TEXT="Player can control this" ID="ID_1301078461" CREATED="1434044107448" MODIFIED="1438114061723">
+<node TEXT="Player can control this" ID="ID_1301078461" CREATED="1434044107448" MODIFIED="1438436534214">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Good source of income" ID="ID_372331008" CREATED="1434044118408" MODIFIED="1438114061724">
+<node TEXT="Good source of income" ID="ID_372331008" CREATED="1434044118408" MODIFIED="1438436534217">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Citizens" ID="ID_663047567" CREATED="1434043865416" MODIFIED="1438114061725">
+<node TEXT="Citizens" ID="ID_663047567" CREATED="1434043865416" MODIFIED="1438436534227">
 <font NAME="Dialog"/>
-<node TEXT="Money support for public services/education" ID="ID_214385712" CREATED="1434044258600" MODIFIED="1438114061726">
+<node TEXT="Money support for public services/education" ID="ID_214385712" CREATED="1434044258600" MODIFIED="1438436534223">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Pay taxes" ID="ID_594362201" CREATED="1434044476568" MODIFIED="1438114061727">
+<node TEXT="Pay taxes" ID="ID_594362201" CREATED="1434044476568" MODIFIED="1438436534233">
 <font NAME="Dialog"/>
-<node TEXT="Income" ID="ID_1898486000" CREATED="1434044597880" MODIFIED="1438114061730">
+<node TEXT="Income" ID="ID_1898486000" CREATED="1434044597880" MODIFIED="1438436534229">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_760756384" STARTINCLINATION="129;0;" ENDINCLINATION="129;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
-<node TEXT="Different expenses" ID="ID_1879740587" CREATED="1434044600600" MODIFIED="1438114061731">
+<node TEXT="Different expenses" ID="ID_1879740587" CREATED="1434044600600" MODIFIED="1438436534232">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_620932988" STARTINCLINATION="137;0;" ENDINCLINATION="137;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_758700861" STARTINCLINATION="171;0;" ENDINCLINATION="171;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
 </node>
 </node>
-<node TEXT="Public services" ID="ID_778619762" CREATED="1434043868552" MODIFIED="1438114061731">
+<node TEXT="Public services" ID="ID_778619762" CREATED="1434043868552" MODIFIED="1438436534235">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_1076954888" STARTINCLINATION="2116;0;" ENDINCLINATION="2116;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
-<node TEXT="Public supplies" ID="ID_1060667505" CREATED="1434043885416" MODIFIED="1438114061732">
+<node TEXT="Public supplies" ID="ID_1060667505" CREATED="1434043885416" MODIFIED="1438436534238">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_1744289032" STARTINCLINATION="3423;0;" ENDINCLINATION="3423;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
-<node TEXT="Taxes" ID="ID_1406381253" CREATED="1434043914360" MODIFIED="1438114061733">
+<node TEXT="Taxes" ID="ID_1406381253" CREATED="1434043914360" MODIFIED="1438436534274">
 <font NAME="Dialog"/>
-<node TEXT="Each zone (if applyable) separately" ID="ID_576223144" CREATED="1434044357176" MODIFIED="1438114061734">
+<node TEXT="Each zone (if applyable) separately" ID="ID_576223144" CREATED="1434044357176" MODIFIED="1438436534245">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Each density separately" ID="ID_1224313831" CREATED="1434044368888" MODIFIED="1438114061735">
+<node TEXT="Each density separately" ID="ID_1224313831" CREATED="1434044368888" MODIFIED="1438436534248">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Income" ID="ID_1852657110" CREATED="1434044671336" MODIFIED="1438114061735">
+<node TEXT="Income" ID="ID_1852657110" CREATED="1434044671336" MODIFIED="1438436534265">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_1758539544" STARTINCLINATION="393;0;" ENDINCLINATION="393;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
-<node TEXT="Income tax (citizens)" ID="ID_760756384" CREATED="1434044687512" MODIFIED="1438114061736">
+<node TEXT="Income tax (citizens)" ID="ID_760756384" CREATED="1434044687512" MODIFIED="1438436534254">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Business tax" ID="ID_46461886" CREATED="1434044731944" MODIFIED="1438114061737">
+<node TEXT="Business tax" ID="ID_46461886" CREATED="1434044731944" MODIFIED="1438436534257">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Fuel tax (ticket price)" ID="ID_620932988" CREATED="1434044614648" MODIFIED="1438114061738">
+<node TEXT="Fuel tax (ticket price)" ID="ID_620932988" CREATED="1434044614648" MODIFIED="1438436534261">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Value-added tax" ID="ID_758700861" CREATED="1434044623132" MODIFIED="1438114061739">
+<node TEXT="Value-added tax" ID="ID_758700861" CREATED="1434044623132" MODIFIED="1438436534271">
 <font NAME="Dialog"/>
-<node TEXT="Citizens (shopping)" ID="ID_427809334" CREATED="1434044841513" MODIFIED="1438114061739">
+<node TEXT="Citizens (shopping)" ID="ID_427809334" CREATED="1434044841513" MODIFIED="1438436534267">
 <font NAME="Dialog"/>
 </node>
-<node TEXT="Business trades" ID="ID_738888981" CREATED="1434044846345" MODIFIED="1438114061740">
+<node TEXT="Business trades" ID="ID_738888981" CREATED="1434044846345" MODIFIED="1438436534270">
 <font NAME="Dialog"/>
 </node>
 </node>
 </node>
-<node TEXT="Expenses" ID="ID_1633661927" CREATED="1434044674712" MODIFIED="1438114061741">
+<node TEXT="Expenses" ID="ID_1633661927" CREATED="1434044674712" MODIFIED="1438436534286">
 <font NAME="Dialog"/>
-<node TEXT="Used for paying unemployed citizens" ID="ID_1174253762" CREATED="1434044548248" MODIFIED="1438114061742">
+<node TEXT="Used for paying unemployed citizens" ID="ID_1174253762" CREATED="1434044548248" MODIFIED="1438436534280">
 <font NAME="Dialog"/>
-<node TEXT="Not in reality as complexibility is then to high" ID="ID_1903305622" CREATED="1434044563560" MODIFIED="1438114061743">
+<node TEXT="Not in reality as complexibility is then to high" ID="ID_1903305622" CREATED="1434044563560" MODIFIED="1438436534279">
 <font NAME="Dialog"/>
 </node>
 </node>
-<node TEXT="Public services" ID="ID_1457171596" CREATED="1434045030185" MODIFIED="1438114061743">
+<node TEXT="Public services" ID="ID_1457171596" CREATED="1434045030185" MODIFIED="1438436534282">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_778619762" STARTINCLINATION="311;0;" ENDINCLINATION="351;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>
-<node TEXT="Public supplies" ID="ID_32961669" CREATED="1434045035065" MODIFIED="1438114061744">
+<node TEXT="Public supplies" ID="ID_32961669" CREATED="1434045035065" MODIFIED="1438436534285">
 <font NAME="Dialog"/>
 <arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="Dialog" DESTINATION="ID_1060667505" STARTINCLINATION="387;0;" ENDINCLINATION="237;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
 </node>