diff --git a/README.md b/README.md index bdc2a838..fdd312ea 100644 --- a/README.md +++ b/README.md @@ -355,7 +355,7 @@ There are multiple PSO quest formats out there; newserv supports all of them. It 4. *Episode 3 quests don't go in the system/quests directory. See the [Episode 3 section](#episode-3-features) section below.* 5. *Quest source can be assembled into a .bin or .bind file with `newserv assemble-quest-script FILENAME.txt`. See system/quests/retrieval/q058-gc-e.bin.txt for an annotated example; this is the English GameCube version of Lost HEAT SWORD.* -Episode 3 download quests consist only of a .bin file - there is no corresponding .dat file. Episode 3 download quest files may be named with the .mnm extension instead of .bin, since the format is the same as the standard map files (in system/ep3/). These files can be encoded in any of the formats described above, except .qst. +Episode 3 download quests consist only of a .bin file - there is no corresponding .dat file. Episode 3 download quest files may be named with the .mnm extension instead of .bin, since the format is the same as the standard map files (in system/ep3/maps/). These files can be encoded in any of the formats described above, except .qst. When newserv indexes the quests during startup, it will warn (but not fail) if any quests are corrupt or in unrecognized formats. @@ -452,9 +452,7 @@ Episode 3 state and game data is stored in the system/ep3 directory. The files i * card-text.mnr: Compressed card text archive. Generally only used for debugging. * card-text.mnrd: Decompressed card text archive; same format as TextCardE.bin. Generally only used for debugging. * com-decks.json: COM decks used in tournaments. The default decks in this file come from logs from Sega's servers, so the file doesn't include every COM deck Sega ever made - the rest are probably lost to time. -* maps/: Online free battle and quest maps (.mnm/.bin/.mnmd/.bind files). newserv comes with the default online maps, as well as some fan-made variations and quests to help new players get up to speed. -* maps-download/: Download maps and quests (.mnm/.bin/.mnmd/.bind files). There are two subcategories by default (download maps and Trial Edition download maps), but you can add more by editing QuestCategories in config.json. Categories that have flag 0x40 (Ep3 download) set are indexed from this directory; all others are indexed from system/quests/. Files in maps-download/ subdirectories have the same format as those in the maps/ directory, but should be named like `e###-gc3-LANGUAGE.EXT` (similar to how non-Episode 3 quests are named in the system/quests/ directory). If you want a map to be available for online play and for downloading, the file must exist in both maps/ and in a maps-download/ subdirectory (a symbolic link is acceptable). -* maps-offline/: Offline map files. These are all the offline quests and free battle maps from the client, including some debugging/test maps that were inaccessible during normal play. To make them playable online, put the files in the maps/ directory. +* maps/: Online free battle and quest maps (.mnm/.bin/.mnmd/.bind files). newserv comes with the default online maps, as well as some fan-made variations and quests to help new players get up to speed. Within the maps/ directory, each subdirectory is treated as a separate category and may be optionally downloadable or available at the battle setup counter. The category.json file in each subdirectory specifies the category's behavior; see system/ep3/maps/online/category.json for a documented example. * tournament-state.json: State of all active tournaments. This file is automatically written when any tournament changes state for any reason (e.g. a tournament is created/started/deleted or a match is resolved). There is no public editor for Episode 3 maps and quests, but the format is described fairly thoroughly in src/Episode3/DataIndexes.hh (see the MapDefinition structure). You'll need to use `newserv decompress-prs ...` to decompress a .bin or .mnm file before editing it, but you don't need to compress it again to use it - just put the .bind or .mnmd file in the maps directory and newserv will make it available. diff --git a/src/Episode3/DataIndexes.cc b/src/Episode3/DataIndexes.cc index 99a35ef0..386e09a3 100644 --- a/src/Episode3/DataIndexes.cc +++ b/src/Episode3/DataIndexes.cc @@ -2670,8 +2670,9 @@ std::shared_ptr MapIndex::VersionedMap::trial_download() cons return this->download_data_trial; } -MapIndex::Map::Map(shared_ptr initial_version) +MapIndex::Map::Map(shared_ptr initial_version, uint8_t visibility_flags) : map_number(initial_version->map->map_number), + visibility_flags(visibility_flags), initial_version(initial_version) { size_t lang_index = static_cast(this->initial_version->language); this->versions.resize(lang_index + 1); @@ -2718,40 +2719,47 @@ shared_ptr MapIndex::Map::version(Language languag throw logic_error("no map versions exist"); } -MapIndex::MapIndex(const string& directory) { +MapIndex::Category::Category(uint32_t category_id, const phosg::JSON& json) + : category_id(category_id), + visibility_flags(json.get_int("VisibilityFlags")), + name(json.get_string("Name", "")), + description(json.get_string("Description", "")) {} + +MapIndex::MapIndex(const string& directory, bool raise_on_any_failure) { map> mutable_maps; - for (const auto& item : std::filesystem::directory_iterator(directory)) { - string filename = item.path().filename().string(); + + auto try_add_map_file = [&](std::shared_ptr category, const std::string& file_path) -> void { try { + string filename = phosg::basename(file_path); string base_filename; string compressed_data; shared_ptr decompressed_data; if (filename.ends_with(".mnmd") || filename.ends_with(".bind")) { - decompressed_data = make_shared(phosg::load_object_file(directory + "/" + filename)); + decompressed_data = make_shared(phosg::load_object_file(file_path)); base_filename = filename.substr(0, filename.size() - 5); } else if (filename.ends_with(".mnm") || filename.ends_with(".bin")) { - compressed_data = phosg::load_file(directory + "/" + filename); + compressed_data = phosg::load_file(file_path); base_filename = filename.substr(0, filename.size() - 4); } else if (filename.ends_with(".bin.gci") || filename.ends_with(".mnm.gci")) { - compressed_data = decode_gci_data(phosg::load_file(directory + "/" + filename)); + compressed_data = decode_gci_data(phosg::load_file(file_path)); base_filename = filename.substr(0, filename.size() - 8); } else if (filename.ends_with(".gci")) { - compressed_data = decode_gci_data(phosg::load_file(directory + "/" + filename)); + compressed_data = decode_gci_data(phosg::load_file(file_path)); base_filename = filename.substr(0, filename.size() - 4); } else if (filename.ends_with(".bin.vms") || filename.ends_with(".mnm.vms")) { - compressed_data = decode_vms_data(phosg::load_file(directory + "/" + filename)); + compressed_data = decode_vms_data(phosg::load_file(file_path)); base_filename = filename.substr(0, filename.size() - 8); } else if (filename.ends_with(".vms")) { - compressed_data = decode_vms_data(phosg::load_file(directory + "/" + filename)); + compressed_data = decode_vms_data(phosg::load_file(file_path)); base_filename = filename.substr(0, filename.size() - 4); } else if (filename.ends_with(".bin.dlq") || filename.ends_with(".mnm.dlq")) { - compressed_data = decode_dlq_data(phosg::load_file(directory + "/" + filename)); + compressed_data = decode_dlq_data(phosg::load_file(file_path)); base_filename = filename.substr(0, filename.size() - 8); } else if (filename.ends_with(".dlq")) { - compressed_data = decode_dlq_data(phosg::load_file(directory + "/" + filename)); + compressed_data = decode_dlq_data(phosg::load_file(file_path)); base_filename = filename.substr(0, filename.size() - 4); } else { - continue; // Silently skip file + return; // Silently skip file } if (base_filename.size() < 2) { @@ -2771,18 +2779,31 @@ MapIndex::MapIndex(const string& directory) { throw runtime_error("unknown map file format"); } + uint8_t visibility_flags = category ? category->visibility_flags : 0x00; + string name = vm->map->name.decode(vm->language); auto map_it = mutable_maps.find(vm->map->map_number); if (map_it == mutable_maps.end()) { - map_it = mutable_maps.emplace(vm->map->map_number, make_shared(vm)).first; + map_it = mutable_maps.emplace(vm->map->map_number, make_shared(vm, visibility_flags)).first; this->maps.emplace(vm->map->map_number, map_it->second); - static_game_data_log.debug_f("({}) Created Episode 3 map {:08X} {} ({}; {})", + + string in_category_str; + if (category) { + in_category_str = std::format(" in category {}", category->name); + category->add_map(map_it->second); + } + static_game_data_log.debug_f("({}) Created Episode 3 map {:08X} {}{} ({}; {})", filename, vm->map->map_number, char_for_language(vm->language), + in_category_str, vm->map->is_quest() ? "quest" : "free", name); } else { + if (map_it->second->visibility_flags != visibility_flags) { + throw std::runtime_error(std::format("visibility flags {:02X} for added map {} do not match existing flags {}", + map_it->second->visibility_flags, file_path, visibility_flags)); + } map_it->second->add_version(vm); static_game_data_log.debug_f("({}) Added Episode 3 map version {:08X} {} ({}; {})", filename, @@ -2794,13 +2815,45 @@ MapIndex::MapIndex(const string& directory) { this->maps_by_name.emplace(vm->map->name.decode(vm->language), map_it->second); } catch (const exception& e) { - static_game_data_log.warning_f("Failed to index Episode 3 map {}: {}", - filename, e.what()); + if (raise_on_any_failure) { + throw; + } + static_game_data_log.warning_f("Failed to index Episode 3 map {}: {}", file_path, e.what()); + } + }; + + for (const auto& cat_item : std::filesystem::directory_iterator(directory)) { + string cat_dir_path = cat_item.path().string(); + + if (cat_item.is_directory()) { + shared_ptr category; + try { + string json_filename = std::format("{}/{}", cat_item.path().string(), "category.json"); + auto category_json = phosg::JSON::parse(phosg::load_file(json_filename)); + uint32_t category_id = this->categories.size() + 1; + auto category = make_shared(category_id, category_json); + this->categories.emplace(category_id, category); + static_game_data_log.debug_f("({}) Created Episode 3 map category {:08X} ({})", + cat_item.path().filename().string(), category_id, category->name); + + for (const auto& map_item : std::filesystem::directory_iterator(cat_item)) { + try_add_map_file(category, map_item.path().string()); + } + + } catch (const exception& e) { + if (raise_on_any_failure) { + throw; + } + static_game_data_log.warning_f("Failed to index Episode 3 map category {}: {}", cat_item.path().string(), e.what()); + } + + } else { + try_add_map_file(nullptr, cat_dir_path); } } } -const string& MapIndex::get_compressed_list(size_t num_players, Language language) const { +const string& MapIndex::get_compressed_list(size_t num_players, Language language, bool is_trial) const { if (num_players == 0) { throw runtime_error("cannot generate map list for no players"); } @@ -2808,17 +2861,27 @@ const string& MapIndex::get_compressed_list(size_t num_players, Language languag throw logic_error("player count is too high in map list generation"); } + auto& compressed_lists = is_trial ? this->compressed_map_lists_trial : this->compressed_map_lists_final; + size_t lang_index = static_cast(language); - if (lang_index >= this->compressed_map_lists.size()) { - this->compressed_map_lists.resize(lang_index + 1); + if (lang_index >= compressed_lists.size()) { + compressed_lists.resize(lang_index + 1); } - string& compressed_map_list = this->compressed_map_lists[lang_index].at(num_players - 1); + string& compressed_map_list = compressed_lists[lang_index].at(num_players - 1); if (compressed_map_list.empty()) { phosg::StringWriter entries_w; phosg::StringWriter strings_w; + auto vis_flag = is_trial + ? Episode3::MapIndex::VisibilityFlag::ONLINE_TRIAL + : Episode3::MapIndex::VisibilityFlag::ONLINE_FINAL; + size_t num_maps = 0; for (const auto& map_it : this->maps) { + if (!map_it.second->check_visibility_flag(vis_flag)) { + continue; + } + auto vm = map_it.second->version(language); size_t map_num_players = 0; for (size_t z = 0; z < 4; z++) { @@ -2875,11 +2938,12 @@ const string& MapIndex::get_compressed_list(size_t num_players, Language languag compressed_w.write(prs.close()); compressed_map_list = std::move(compressed_w.str()); if (compressed_map_list.size() > 0x7BEC) { - throw runtime_error(std::format("compressed map list for {} players is too large (0x{:X} bytes)", num_players, compressed_map_list.size())); + throw runtime_error(std::format("compressed {} map list for {} players is too large (0x{:X} bytes)", + is_trial ? "trial" : "final", num_players, compressed_map_list.size())); } size_t decompressed_size = sizeof(header) + entries_w.size() + strings_w.size(); - static_game_data_log.info_f("Generated Episode 3 compressed map list for {} player(s) ({} maps; 0x{:X} -> 0x{:X} bytes)", - num_players, num_maps, decompressed_size, compressed_map_list.size()); + static_game_data_log.info_f("Generated Episode 3 compressed {} map list for {} player(s) ({} maps; 0x{:X} -> 0x{:X} bytes)", + is_trial ? "trial" : "final", num_players, num_maps, decompressed_size, compressed_map_list.size()); } return compressed_map_list; } diff --git a/src/Episode3/DataIndexes.hh b/src/Episode3/DataIndexes.hh index d640be68..cd8c86a5 100644 --- a/src/Episode3/DataIndexes.hh +++ b/src/Episode3/DataIndexes.hh @@ -1587,7 +1587,12 @@ private: class MapIndex { public: - explicit MapIndex(const std::string& directory); + enum class VisibilityFlag : uint8_t { + ONLINE_TRIAL = 0x01, + ONLINE_FINAL = 0x02, + DOWNLOAD_TRIAL = 0x04, + DOWNLOAD_FINAL = 0x08, + }; class VersionedMap { public: @@ -1611,9 +1616,14 @@ public: class Map { public: uint32_t map_number; + uint8_t visibility_flags; std::shared_ptr initial_version; - explicit Map(std::shared_ptr initial_version); + Map(std::shared_ptr initial_version, uint8_t visibility_flags); + + inline bool check_visibility_flag(VisibilityFlag flag) const { + return (this->visibility_flags & static_cast(flag)); + } void add_version(std::shared_ptr vm); bool has_version(Language language) const; @@ -1626,24 +1636,76 @@ public: std::vector> versions; }; - const std::string& get_compressed_list(size_t num_players, Language language) const; - inline std::shared_ptr get(uint32_t id) const { + class Category { + public: + uint32_t category_id; + uint8_t visibility_flags; + std::string name; + std::string description; + + Category(uint32_t category_id, const phosg::JSON& json); + + inline bool check_visibility_flag(VisibilityFlag flag) const { + return (this->visibility_flags & static_cast(flag)); + } + + inline void add_map(std::shared_ptr map) { + this->maps.emplace(map->map_number, map); + } + inline const std::map>& all_maps() const { + return this->maps; + } + + private: + std::map> maps; + }; + + explicit MapIndex(const std::string& directory, bool raise_on_any_failure = false); + + const std::string& get_compressed_list(size_t num_players, Language language, bool is_trial) const; + inline std::shared_ptr map_for_id(uint32_t id) const { return this->maps.at(id); } - inline std::shared_ptr get(const std::string& name) const { + inline std::shared_ptr map_for_name(const std::string& name) const { return this->maps_by_name.at(name); } - inline const std::map>& all() const { + inline const std::map>& all_maps() const { return this->maps; } + inline std::shared_ptr category_for_id(uint32_t id) const { + return this->categories.at(id); + } + inline const std::map>& all_categories() const { + return this->categories; + } + private: - // The compressed map lists are generated on demand from the maps map below - mutable std::vector> compressed_map_lists; + // The compressed map lists are generated on demand from the maps map below. + // THey are indexed as [language][num_players] + mutable std::vector> compressed_map_lists_trial; + mutable std::vector> compressed_map_lists_final; + + std::map> categories; std::map> maps; std::unordered_map> maps_by_name; }; +class MapCategoryIndex { +public: + explicit MapCategoryIndex(const std::string& directory); + + inline std::shared_ptr get(uint32_t id) const { + return this->indexes.at(id); + } + inline const std::map>& all() const { + return this->indexes; + } + +private: + std::map> indexes; +}; + class COMDeckIndex { public: COMDeckIndex(const std::string& filename); diff --git a/src/Episode3/Server.cc b/src/Episode3/Server.cc index 68012009..c6b61192 100644 --- a/src/Episode3/Server.cc +++ b/src/Episode3/Server.cc @@ -2527,7 +2527,7 @@ void Server::handle_CAx40_map_list_request(shared_ptr sender_c, const st size_t num_players = l ? l->count_clients() : 1; Language language = sender_c ? sender_c->language() : Language::ENGLISH; - const auto& list_data = this->options.map_index->get_compressed_list(num_players, language); + const auto& list_data = this->options.map_index->get_compressed_list(num_players, language, this->options.is_nte()); phosg::StringWriter w; uint32_t subcommand_size = (list_data.size() + sizeof(G_MapList_Ep3_6xB6x40) + 3) & (~3); @@ -2596,7 +2596,7 @@ void Server::handle_CAx41_map_request(shared_ptr, const string& data) { const auto& cmd = check_size_t(data); this->send_debug_command_received_message(cmd.header.subsubcommand, "MAP DATA"); if (!this->options.tournament || (this->options.tournament->get_map()->map_number == cmd.map_number)) { - this->last_chosen_map = this->options.map_index->get(cmd.map_number); + this->last_chosen_map = this->options.map_index->map_for_id(cmd.map_number); this->send_6xB6x41_to_all_clients(); } } diff --git a/src/Episode3/Tournament.cc b/src/Episode3/Tournament.cc index c09f39df..ba51293c 100644 --- a/src/Episode3/Tournament.cc +++ b/src/Episode3/Tournament.cc @@ -357,7 +357,7 @@ void Tournament::init() { bool is_registration_complete; if (!this->source_json.is_null()) { this->name = this->source_json.get_string("name"); - this->map = this->map_index->get(this->source_json.get_int("map_number")); + this->map = this->map_index->map_for_id(this->source_json.get_int("map_number")); this->rules = Rules(this->source_json.at("rules")); this->flags = this->source_json.get_int("flags", 0x02); if (this->source_json.get_bool("is_2v2", false)) { diff --git a/src/Main.cc b/src/Main.cc index 623e28ad..2ff763a0 100644 --- a/src/Main.cc +++ b/src/Main.cc @@ -2827,9 +2827,9 @@ Action a_show_ep3_maps( s->load_ep3_cards(); s->load_ep3_maps(); - const auto& map_ids = s->ep3_map_index->all(); - phosg::log_info_f("{} maps", map_ids.size()); - for (const auto& [map_number, map] : map_ids) { + const auto& all_maps = s->ep3_map_index->all_maps(); + phosg::log_info_f("{} maps", all_maps.size()); + for (const auto& [map_number, map] : all_maps) { const auto& vms = map->all_versions(); for (size_t lang_index = 0; lang_index < vms.size(); lang_index++) { if (!vms[lang_index]) { @@ -3042,6 +3042,15 @@ Action a_check_quests( phosg::fwrite_fmt(stdout, "All quests indexed\n"); }); +Action a_check_ep3_maps( + "check-ep3-maps", nullptr, + +[](phosg::Arguments& args) { + config_log.info_f("Collecting Episode 3 data"); + auto s = make_shared(get_config_filename(args)); + s->is_debug = true; + s->load_ep3_maps(true); + }); + Action a_check_client_functions( "check-client-functions", nullptr, +[](phosg::Arguments&) { diff --git a/src/Menu.hh b/src/Menu.hh index 63416e6d..716a0c02 100644 --- a/src/Menu.hh +++ b/src/Menu.hh @@ -24,7 +24,7 @@ constexpr uint32_t QUEST_EP2 = 0x55020255; constexpr uint32_t QUEST_EP3 = 0x55030355; // See the decsription of the A2 command in CommandFormats.hh for why these // menu IDs don't fit the rest of the pattern. -constexpr uint32_t QUEST_CATEGORIES_EP1 = 0x01000001; +constexpr uint32_t QUEST_CATEGORIES_EP1_EP3_EP4 = 0x01000001; constexpr uint32_t QUEST_CATEGORIES_EP2 = 0x02000002; constexpr uint32_t PROXY_DESTINATIONS = 0x77000077; constexpr uint32_t PROGRAMS = 0x88000088; diff --git a/src/ReceiveCommands.cc b/src/ReceiveCommands.cc index ce63bff1..038d04e3 100644 --- a/src/ReceiveCommands.cc +++ b/src/ReceiveCommands.cc @@ -2152,7 +2152,7 @@ static asio::awaitable on_09(shared_ptr c, Channel::Message& msg) auto s = c->require_server_state(); switch (cmd.menu_id) { - case MenuID::QUEST_CATEGORIES_EP1: + case MenuID::QUEST_CATEGORIES_EP1_EP3_EP4: case MenuID::QUEST_CATEGORIES_EP2: // Don't send anything here. The quest filter menu already has short // descriptions included with the entries, which the client shows in the @@ -2179,8 +2179,12 @@ static asio::awaitable on_09(shared_ptr c, Channel::Message& msg) break; } case MenuID::QUEST_EP3: { - auto map = s->ep3_download_map_index->get(cmd.item_id); - if (!map) { + auto vis_flag = (c->version() == Version::GC_EP3_NTE) + ? Episode3::MapIndex::VisibilityFlag::ONLINE_TRIAL + : Episode3::MapIndex::VisibilityFlag::ONLINE_FINAL; + + auto map = s->ep3_map_index->map_for_id(cmd.item_id); + if (!map || !map->check_visibility_flag(vis_flag)) { send_quest_info(c, "$C4Map does not exist.", 0x00, true); } else { auto vm = map->version(c->language()); @@ -2557,11 +2561,7 @@ static asio::awaitable on_10_main_menu(shared_ptr c, uint32_t item break; case MainMenuItemID::DOWNLOAD_QUESTS: { - if (is_ep3(c->version())) { - send_ep3_download_quest_menu(c); - } else { - send_quest_categories_menu(c, QuestMenuType::DOWNLOAD, Episode::NONE); - } + send_quest_categories_menu(c, QuestMenuType::DOWNLOAD, Episode::NONE); break; } @@ -2811,27 +2811,32 @@ static asio::awaitable on_10_game_menu(shared_ptr c, uint32_t item } static asio::awaitable on_10_quest_categories(shared_ptr c, uint32_t item_id) { - // Episode 3 doesn't have this menu if (is_ep3(c->version())) { - throw runtime_error("Episode 3 client made selection on quest categories menu"); - } + auto s = c->require_server_state(); + if (!s->ep3_map_index) { + send_lobby_message_box(c, "$C7Quests are not available."); + co_return; + } + send_ep3_download_quest_menu(c, item_id); - auto s = c->require_server_state(); - if (!s->quest_index) { - send_lobby_message_box(c, "$C7Quests are not available."); - co_return; - } + } else { + auto s = c->require_server_state(); + if (!s->quest_index) { + send_lobby_message_box(c, "$C7Quests are not available."); + co_return; + } - shared_ptr l = c->lobby.lock(); - Episode episode = l ? l->episode : Episode::NONE; - uint16_t version_flags = (1 << static_cast(c->version())) | (l ? l->quest_version_flags() : 0); - QuestIndex::IncludeCondition include_condition = nullptr; - if (l && !c->login->account->check_flag(Account::Flag::DISABLE_QUEST_REQUIREMENTS)) { - include_condition = l->quest_include_condition(); - } + shared_ptr l = c->lobby.lock(); + Episode episode = l ? l->episode : Episode::NONE; + uint16_t version_flags = (1 << static_cast(c->version())) | (l ? l->quest_version_flags() : 0); + QuestIndex::IncludeCondition include_condition = nullptr; + if (l && !c->login->account->check_flag(Account::Flag::DISABLE_QUEST_REQUIREMENTS)) { + include_condition = l->quest_include_condition(); + } - const auto& quests = s->quest_index->filter(episode, version_flags, item_id, include_condition); - send_quest_menu(c, quests, !l); + const auto& quests = s->quest_index->filter(episode, version_flags, item_id, include_condition); + send_quest_menu(c, quests, !l); + } } static asio::awaitable on_10_quest_menu(shared_ptr c, uint32_t item_id) { @@ -2898,7 +2903,16 @@ static asio::awaitable on_10_ep3_download_quest_menu(shared_ptr c, if (c->lobby.lock()) { throw runtime_error("Episode 3 quests can only be downloaded when client is not in a lobby"); } - auto map = s->ep3_download_map_index->get(item_id); + + auto map = s->ep3_map_index->map_for_id(item_id); + + auto vis_flag = (c->version() == Version::GC_EP3_NTE) + ? Episode3::MapIndex::VisibilityFlag::ONLINE_TRIAL + : Episode3::MapIndex::VisibilityFlag::ONLINE_FINAL; + if (!map->check_visibility_flag(vis_flag)) { + throw runtime_error("map is not visible to this client"); + } + auto vm = map->version(c->language()); auto name = vm->map->name.decode(vm->language); string filename = std::format("m{:06}p_{:c}.bin", map->map_number, tolower(char_for_language(vm->language))); @@ -3055,7 +3069,7 @@ static asio::awaitable on_10(shared_ptr c, Channel::Message& msg) case MenuID::GAME: co_await on_10_game_menu(c, base_cmd.item_id, std::move(password)); break; - case MenuID::QUEST_CATEGORIES_EP1: + case MenuID::QUEST_CATEGORIES_EP1_EP3_EP4: case MenuID::QUEST_CATEGORIES_EP2: co_await on_10_quest_categories(c, base_cmd.item_id); break; diff --git a/src/SendCommands.cc b/src/SendCommands.cc index 82f9b8d8..ac405418 100644 --- a/src/SendCommands.cc +++ b/src/SendCommands.cc @@ -1674,20 +1674,6 @@ void send_quest_menu_bb( send_command_vt(c, is_download_menu ? 0xA4 : 0xA2, entries.size(), entries); } -void send_ep3_download_quest_menu(shared_ptr c) { - auto s = c->require_server_state(); - vector entries; - for (const auto& it : s->ep3_download_map_index->all()) { - auto vm = it.second->version(c->language()); - auto& e = entries.emplace_back(); - e.menu_id = MenuID::QUEST_EP3; - e.item_id = it.first; // map_number - e.name.encode(vm->map->name.decode(vm->language), c->language()); - e.short_description.encode(add_color(vm->map->location_name.decode(vm->language)), c->language()); - } - send_command_vt(c, 0xA4, entries.size(), entries); -} - template void send_quest_categories_menu_t(shared_ptr c, QuestMenuType menu_type, Episode episode) { QuestIndex::IncludeCondition include_condition = nullptr; @@ -1706,7 +1692,7 @@ void send_quest_categories_menu_t(shared_ptr c, QuestMenuType menu_type, auto s = c->require_server_state(); for (const auto& cat : s->quest_index->categories(menu_type, episode, version_flags, include_condition)) { auto& e = entries.emplace_back(); - e.menu_id = cat->use_ep2_icon() ? MenuID::QUEST_CATEGORIES_EP2 : MenuID::QUEST_CATEGORIES_EP1; + e.menu_id = cat->use_ep2_icon() ? MenuID::QUEST_CATEGORIES_EP2 : MenuID::QUEST_CATEGORIES_EP1_EP3_EP4; e.item_id = cat->category_id; e.name.encode(cat->name, c->language()); e.short_description.encode(add_color(cat->description), c->language()); @@ -1716,6 +1702,58 @@ void send_quest_categories_menu_t(shared_ptr c, QuestMenuType menu_type, send_command_vt(c, is_download_menu ? 0xA4 : 0xA2, entries.size(), entries); } +void send_ep3_download_quest_categories_menu(shared_ptr c) { + if (c->lobby.lock()) { + throw std::runtime_error("cannot send Ep3 download quest menu to client in a lobby"); + } + + auto vis_flag = (c->version() == Version::GC_EP3_NTE) + ? Episode3::MapIndex::VisibilityFlag::DOWNLOAD_TRIAL + : Episode3::MapIndex::VisibilityFlag::DOWNLOAD_FINAL; + + vector entries; + auto s = c->require_server_state(); + for (const auto& [_, cat] : s->ep3_map_index->all_categories()) { + if (cat->check_visibility_flag(vis_flag)) { + auto& e = entries.emplace_back(); + e.menu_id = MenuID::QUEST_CATEGORIES_EP1_EP3_EP4; + e.item_id = cat->category_id; + e.name.encode(cat->name, c->language()); + e.short_description.encode(add_color(cat->description), c->language()); + } + } + + send_command_vt(c, 0xA4, entries.size(), entries); +} + +void send_ep3_download_quest_menu(shared_ptr c, uint32_t category_id) { + if (c->lobby.lock()) { + throw std::runtime_error("cannot send Ep3 download quest menu to client in a lobby"); + } + + auto vis_flag = (c->version() == Version::GC_EP3_NTE) + ? Episode3::MapIndex::VisibilityFlag::ONLINE_TRIAL + : Episode3::MapIndex::VisibilityFlag::ONLINE_FINAL; + + auto s = c->require_server_state(); + auto category = s->ep3_map_index->category_for_id(category_id); + if (!category->check_visibility_flag(vis_flag)) { + throw std::runtime_error("category is not visible to this client"); + } + + vector entries; + for (const auto& [map_number, map] : category->all_maps()) { + auto vm = map->version(c->language()); + auto& e = entries.emplace_back(); + e.menu_id = MenuID::QUEST_EP3; + e.item_id = map_number; + e.name.encode(vm->map->name.decode(vm->language), c->language()); + e.short_description.encode(add_color(vm->map->location_name.decode(vm->language)), c->language()); + } + + send_command_vt(c, 0xA4, entries.size(), entries); +} + void send_quest_menu( shared_ptr c, const vector>>& quests, @@ -1731,10 +1769,11 @@ void send_quest_menu( case Version::DC_V2: case Version::GC_NTE: case Version::GC_V3: - case Version::GC_EP3_NTE: - case Version::GC_EP3: send_quest_menu_t(c, quests, is_download_menu); break; + case Version::GC_EP3_NTE: + case Version::GC_EP3: + throw std::logic_error("Episode 3 clients cannot receive a non-download quest menu"); case Version::XB_V3: send_quest_menu_t(c, quests, is_download_menu); break; @@ -1758,9 +1797,14 @@ void send_quest_categories_menu(shared_ptr c, QuestMenuType menu_type, E case Version::DC_V2: case Version::GC_NTE: case Version::GC_V3: + send_quest_categories_menu_t(c, menu_type, episode); + break; case Version::GC_EP3_NTE: case Version::GC_EP3: - send_quest_categories_menu_t(c, menu_type, episode); + if (menu_type != QuestMenuType::DOWNLOAD) { + throw std::runtime_error("Episode 3 clients cannot receive a non-download quest menu"); + } + send_ep3_download_quest_categories_menu(c); break; case Version::XB_V3: send_quest_categories_menu_t(c, menu_type, episode); diff --git a/src/SendCommands.hh b/src/SendCommands.hh index bad8230f..228ed975 100644 --- a/src/SendCommands.hh +++ b/src/SendCommands.hh @@ -312,7 +312,8 @@ void send_quest_menu( std::shared_ptr c, const std::vector>>& quests, bool is_download_menu); -void send_ep3_download_quest_menu(std::shared_ptr c); +void send_ep3_download_quest_categories_menu(std::shared_ptr c); +void send_ep3_download_quest_menu(std::shared_ptr c, uint32_t category_id); void send_quest_categories_menu(std::shared_ptr c, QuestMenuType menu_type, Episode episode); void send_lobby_list(std::shared_ptr c); diff --git a/src/ServerState.cc b/src/ServerState.cc index a0d68720..05c1ff0e 100644 --- a/src/ServerState.cc +++ b/src/ServerState.cc @@ -2146,11 +2146,9 @@ void ServerState::load_ep3_cards() { this->ep3_com_deck_index = make_shared("system/ep3/com-decks.json"); } -void ServerState::load_ep3_maps() { +void ServerState::load_ep3_maps(bool raise_on_any_failure) { config_log.info_f("Collecting Episode 3 maps"); - this->ep3_map_index = make_shared("system/ep3/maps"); - config_log.info_f("Collecting Episode 3 download maps"); - this->ep3_download_map_index = make_shared("system/ep3/maps-download"); + this->ep3_map_index = make_shared("system/ep3/maps", raise_on_any_failure); } void ServerState::load_ep3_tournament_state() { diff --git a/src/ServerState.hh b/src/ServerState.hh index 003bbb5d..f6f6546b 100644 --- a/src/ServerState.hh +++ b/src/ServerState.hh @@ -183,7 +183,6 @@ struct ServerState : public std::enable_shared_from_this { std::shared_ptr ep3_card_index; std::shared_ptr ep3_card_index_trial; std::shared_ptr ep3_map_index; - std::shared_ptr ep3_download_map_index; std::shared_ptr ep3_com_deck_index; std::shared_ptr ep3_default_ex_values; std::shared_ptr ep3_tournament_ex_values; @@ -438,7 +437,7 @@ struct ServerState : public std::enable_shared_from_this { void load_set_data_tables(); void load_word_select_table(); void load_ep3_cards(); - void load_ep3_maps(); + void load_ep3_maps(bool raise_on_any_failure = false); void load_ep3_tournament_state(); void load_quest_index(bool raise_on_any_failure = false); void compile_functions(bool raise_on_any_failure = false); diff --git a/src/ShellCommands.cc b/src/ShellCommands.cc index d3a89e74..c697f9c0 100644 --- a/src/ShellCommands.cc +++ b/src/ShellCommands.cc @@ -703,7 +703,7 @@ ShellCommand c_create_tournament( +[](ShellCommand::Args& args) -> asio::awaitable> { string name = get_quoted_string(args.args); string map_name = get_quoted_string(args.args); - auto map = args.s->ep3_map_index->get(map_name); + auto map = args.s->ep3_map_index->map_for_name(map_name); uint32_t num_teams = stoul(get_quoted_string(args.args), nullptr, 0); Episode3::Rules rules; rules.set_defaults(); diff --git a/system/ep3/maps-offline/m000011p-e.mnm b/system/ep3/maps-offline/m000011p-e.mnm deleted file mode 100755 index 0d05a9b6..00000000 Binary files a/system/ep3/maps-offline/m000011p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000011p-f.mnm b/system/ep3/maps-offline/m000011p-f.mnm deleted file mode 100755 index e8ff3104..00000000 Binary files a/system/ep3/maps-offline/m000011p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000011p-g.mnm b/system/ep3/maps-offline/m000011p-g.mnm deleted file mode 100755 index 3e88b807..00000000 Binary files a/system/ep3/maps-offline/m000011p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000011p-j.mnm b/system/ep3/maps-offline/m000011p-j.mnm deleted file mode 100755 index 1d9ef0f9..00000000 Binary files a/system/ep3/maps-offline/m000011p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000011p-s.mnm b/system/ep3/maps-offline/m000011p-s.mnm deleted file mode 100755 index 5cef11f6..00000000 Binary files a/system/ep3/maps-offline/m000011p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000021p-e.mnm b/system/ep3/maps-offline/m000021p-e.mnm deleted file mode 100755 index 8f1eaae4..00000000 Binary files a/system/ep3/maps-offline/m000021p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000021p-f.mnm b/system/ep3/maps-offline/m000021p-f.mnm deleted file mode 100755 index 556fb214..00000000 Binary files a/system/ep3/maps-offline/m000021p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000021p-g.mnm b/system/ep3/maps-offline/m000021p-g.mnm deleted file mode 100755 index f7cfb4cc..00000000 Binary files a/system/ep3/maps-offline/m000021p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000021p-j.mnm b/system/ep3/maps-offline/m000021p-j.mnm deleted file mode 100755 index 02299839..00000000 Binary files a/system/ep3/maps-offline/m000021p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000021p-s.mnm b/system/ep3/maps-offline/m000021p-s.mnm deleted file mode 100755 index 8be8adb3..00000000 Binary files a/system/ep3/maps-offline/m000021p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000031p-e.mnm b/system/ep3/maps-offline/m000031p-e.mnm deleted file mode 100755 index bd95a19e..00000000 Binary files a/system/ep3/maps-offline/m000031p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000031p-f.mnm b/system/ep3/maps-offline/m000031p-f.mnm deleted file mode 100755 index d30c9674..00000000 Binary files a/system/ep3/maps-offline/m000031p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000031p-g.mnm b/system/ep3/maps-offline/m000031p-g.mnm deleted file mode 100755 index d34ccf05..00000000 Binary files a/system/ep3/maps-offline/m000031p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000031p-j.mnm b/system/ep3/maps-offline/m000031p-j.mnm deleted file mode 100755 index 58a43a4a..00000000 Binary files a/system/ep3/maps-offline/m000031p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000031p-s.mnm b/system/ep3/maps-offline/m000031p-s.mnm deleted file mode 100755 index bea8ddb6..00000000 Binary files a/system/ep3/maps-offline/m000031p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000032p-e.mnm b/system/ep3/maps-offline/m000032p-e.mnm deleted file mode 100755 index 5305a28c..00000000 Binary files a/system/ep3/maps-offline/m000032p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000032p-f.mnm b/system/ep3/maps-offline/m000032p-f.mnm deleted file mode 100755 index 6be04876..00000000 Binary files a/system/ep3/maps-offline/m000032p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000032p-g.mnm b/system/ep3/maps-offline/m000032p-g.mnm deleted file mode 100755 index e71cbded..00000000 Binary files a/system/ep3/maps-offline/m000032p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000032p-j.mnm b/system/ep3/maps-offline/m000032p-j.mnm deleted file mode 100755 index d4fc9346..00000000 Binary files a/system/ep3/maps-offline/m000032p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000032p-s.mnm b/system/ep3/maps-offline/m000032p-s.mnm deleted file mode 100755 index de4ec0b9..00000000 Binary files a/system/ep3/maps-offline/m000032p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000041p-e.mnm b/system/ep3/maps-offline/m000041p-e.mnm deleted file mode 100755 index 7397b041..00000000 Binary files a/system/ep3/maps-offline/m000041p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000041p-f.mnm b/system/ep3/maps-offline/m000041p-f.mnm deleted file mode 100755 index 09c5becf..00000000 Binary files a/system/ep3/maps-offline/m000041p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000041p-g.mnm b/system/ep3/maps-offline/m000041p-g.mnm deleted file mode 100755 index 8183de47..00000000 Binary files a/system/ep3/maps-offline/m000041p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000041p-j.mnm b/system/ep3/maps-offline/m000041p-j.mnm deleted file mode 100755 index 1f3dd53d..00000000 Binary files a/system/ep3/maps-offline/m000041p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000041p-s.mnm b/system/ep3/maps-offline/m000041p-s.mnm deleted file mode 100755 index d327e6f7..00000000 Binary files a/system/ep3/maps-offline/m000041p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000042p-e.mnm b/system/ep3/maps-offline/m000042p-e.mnm deleted file mode 100755 index a660e5e9..00000000 Binary files a/system/ep3/maps-offline/m000042p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000042p-f.mnm b/system/ep3/maps-offline/m000042p-f.mnm deleted file mode 100755 index 82b858ab..00000000 Binary files a/system/ep3/maps-offline/m000042p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000042p-g.mnm b/system/ep3/maps-offline/m000042p-g.mnm deleted file mode 100755 index 89bc966b..00000000 Binary files a/system/ep3/maps-offline/m000042p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000042p-j.mnm b/system/ep3/maps-offline/m000042p-j.mnm deleted file mode 100755 index b98cce13..00000000 Binary files a/system/ep3/maps-offline/m000042p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000042p-s.mnm b/system/ep3/maps-offline/m000042p-s.mnm deleted file mode 100755 index 23982968..00000000 Binary files a/system/ep3/maps-offline/m000042p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000043p-e.mnm b/system/ep3/maps-offline/m000043p-e.mnm deleted file mode 100755 index 6a1c6817..00000000 Binary files a/system/ep3/maps-offline/m000043p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000043p-f.mnm b/system/ep3/maps-offline/m000043p-f.mnm deleted file mode 100755 index f5aed639..00000000 Binary files a/system/ep3/maps-offline/m000043p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000043p-g.mnm b/system/ep3/maps-offline/m000043p-g.mnm deleted file mode 100755 index 2b0aa70c..00000000 Binary files a/system/ep3/maps-offline/m000043p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000043p-j.mnm b/system/ep3/maps-offline/m000043p-j.mnm deleted file mode 100755 index add64e6c..00000000 Binary files a/system/ep3/maps-offline/m000043p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000043p-s.mnm b/system/ep3/maps-offline/m000043p-s.mnm deleted file mode 100755 index 791cfae5..00000000 Binary files a/system/ep3/maps-offline/m000043p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000051p-e.mnm b/system/ep3/maps-offline/m000051p-e.mnm deleted file mode 100755 index feea3440..00000000 Binary files a/system/ep3/maps-offline/m000051p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000051p-f.mnm b/system/ep3/maps-offline/m000051p-f.mnm deleted file mode 100755 index ff7b34f1..00000000 Binary files a/system/ep3/maps-offline/m000051p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000051p-g.mnm b/system/ep3/maps-offline/m000051p-g.mnm deleted file mode 100755 index e31c1b2b..00000000 Binary files a/system/ep3/maps-offline/m000051p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000051p-j.mnm b/system/ep3/maps-offline/m000051p-j.mnm deleted file mode 100755 index 02a9e2ae..00000000 Binary files a/system/ep3/maps-offline/m000051p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000051p-s.mnm b/system/ep3/maps-offline/m000051p-s.mnm deleted file mode 100755 index af5b03bb..00000000 Binary files a/system/ep3/maps-offline/m000051p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000052p-e.mnm b/system/ep3/maps-offline/m000052p-e.mnm deleted file mode 100755 index 32b1c566..00000000 Binary files a/system/ep3/maps-offline/m000052p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000052p-f.mnm b/system/ep3/maps-offline/m000052p-f.mnm deleted file mode 100755 index e021af7d..00000000 Binary files a/system/ep3/maps-offline/m000052p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000052p-g.mnm b/system/ep3/maps-offline/m000052p-g.mnm deleted file mode 100755 index 3ce6b316..00000000 Binary files a/system/ep3/maps-offline/m000052p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000052p-j.mnm b/system/ep3/maps-offline/m000052p-j.mnm deleted file mode 100755 index 46631eee..00000000 Binary files a/system/ep3/maps-offline/m000052p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000052p-s.mnm b/system/ep3/maps-offline/m000052p-s.mnm deleted file mode 100755 index 49e0c94b..00000000 Binary files a/system/ep3/maps-offline/m000052p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000053p-e.mnm b/system/ep3/maps-offline/m000053p-e.mnm deleted file mode 100755 index 63469c78..00000000 Binary files a/system/ep3/maps-offline/m000053p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000053p-f.mnm b/system/ep3/maps-offline/m000053p-f.mnm deleted file mode 100755 index 05122dad..00000000 Binary files a/system/ep3/maps-offline/m000053p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000053p-g.mnm b/system/ep3/maps-offline/m000053p-g.mnm deleted file mode 100755 index d61d4b13..00000000 Binary files a/system/ep3/maps-offline/m000053p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000053p-j.mnm b/system/ep3/maps-offline/m000053p-j.mnm deleted file mode 100755 index 797a4830..00000000 Binary files a/system/ep3/maps-offline/m000053p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000053p-s.mnm b/system/ep3/maps-offline/m000053p-s.mnm deleted file mode 100755 index df591dc6..00000000 Binary files a/system/ep3/maps-offline/m000053p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000061p-e.mnm b/system/ep3/maps-offline/m000061p-e.mnm deleted file mode 100755 index c8bba2b6..00000000 Binary files a/system/ep3/maps-offline/m000061p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000061p-f.mnm b/system/ep3/maps-offline/m000061p-f.mnm deleted file mode 100755 index 0047e46d..00000000 Binary files a/system/ep3/maps-offline/m000061p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000061p-g.mnm b/system/ep3/maps-offline/m000061p-g.mnm deleted file mode 100755 index 40e0558c..00000000 Binary files a/system/ep3/maps-offline/m000061p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000061p-j.mnm b/system/ep3/maps-offline/m000061p-j.mnm deleted file mode 100755 index ef79dd28..00000000 Binary files a/system/ep3/maps-offline/m000061p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000061p-s.mnm b/system/ep3/maps-offline/m000061p-s.mnm deleted file mode 100755 index abb0cba4..00000000 Binary files a/system/ep3/maps-offline/m000061p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000062p-e.mnm b/system/ep3/maps-offline/m000062p-e.mnm deleted file mode 100755 index c78af65b..00000000 Binary files a/system/ep3/maps-offline/m000062p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000062p-f.mnm b/system/ep3/maps-offline/m000062p-f.mnm deleted file mode 100755 index 486376b7..00000000 Binary files a/system/ep3/maps-offline/m000062p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000062p-g.mnm b/system/ep3/maps-offline/m000062p-g.mnm deleted file mode 100755 index 7c1f099e..00000000 Binary files a/system/ep3/maps-offline/m000062p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000062p-j.mnm b/system/ep3/maps-offline/m000062p-j.mnm deleted file mode 100755 index afa341d1..00000000 Binary files a/system/ep3/maps-offline/m000062p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000062p-s.mnm b/system/ep3/maps-offline/m000062p-s.mnm deleted file mode 100755 index 8196f3a9..00000000 Binary files a/system/ep3/maps-offline/m000062p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000063p-e.mnm b/system/ep3/maps-offline/m000063p-e.mnm deleted file mode 100755 index cfaa0c48..00000000 Binary files a/system/ep3/maps-offline/m000063p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000063p-f.mnm b/system/ep3/maps-offline/m000063p-f.mnm deleted file mode 100755 index ec275ee2..00000000 Binary files a/system/ep3/maps-offline/m000063p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000063p-g.mnm b/system/ep3/maps-offline/m000063p-g.mnm deleted file mode 100755 index 0fd6c7a9..00000000 Binary files a/system/ep3/maps-offline/m000063p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000063p-j.mnm b/system/ep3/maps-offline/m000063p-j.mnm deleted file mode 100755 index dbf80156..00000000 Binary files a/system/ep3/maps-offline/m000063p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000063p-s.mnm b/system/ep3/maps-offline/m000063p-s.mnm deleted file mode 100755 index 8b2b2d8e..00000000 Binary files a/system/ep3/maps-offline/m000063p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000071p-e.mnm b/system/ep3/maps-offline/m000071p-e.mnm deleted file mode 100755 index e7a1f19a..00000000 Binary files a/system/ep3/maps-offline/m000071p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000071p-f.mnm b/system/ep3/maps-offline/m000071p-f.mnm deleted file mode 100755 index 4e488489..00000000 Binary files a/system/ep3/maps-offline/m000071p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000071p-g.mnm b/system/ep3/maps-offline/m000071p-g.mnm deleted file mode 100755 index 9514d7af..00000000 Binary files a/system/ep3/maps-offline/m000071p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000071p-j.mnm b/system/ep3/maps-offline/m000071p-j.mnm deleted file mode 100755 index acc12d2b..00000000 Binary files a/system/ep3/maps-offline/m000071p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000071p-s.mnm b/system/ep3/maps-offline/m000071p-s.mnm deleted file mode 100755 index 4b876d01..00000000 Binary files a/system/ep3/maps-offline/m000071p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000072p-e.mnm b/system/ep3/maps-offline/m000072p-e.mnm deleted file mode 100755 index dcec75ef..00000000 Binary files a/system/ep3/maps-offline/m000072p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000072p-f.mnm b/system/ep3/maps-offline/m000072p-f.mnm deleted file mode 100755 index 08a7820a..00000000 Binary files a/system/ep3/maps-offline/m000072p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000072p-g.mnm b/system/ep3/maps-offline/m000072p-g.mnm deleted file mode 100755 index e794cf87..00000000 Binary files a/system/ep3/maps-offline/m000072p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000072p-j.mnm b/system/ep3/maps-offline/m000072p-j.mnm deleted file mode 100755 index d7a87b85..00000000 Binary files a/system/ep3/maps-offline/m000072p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000072p-s.mnm b/system/ep3/maps-offline/m000072p-s.mnm deleted file mode 100755 index fbb867d9..00000000 Binary files a/system/ep3/maps-offline/m000072p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000073p-e.mnm b/system/ep3/maps-offline/m000073p-e.mnm deleted file mode 100755 index a4caa0af..00000000 Binary files a/system/ep3/maps-offline/m000073p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000073p-f.mnm b/system/ep3/maps-offline/m000073p-f.mnm deleted file mode 100755 index 2f9646db..00000000 Binary files a/system/ep3/maps-offline/m000073p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000073p-g.mnm b/system/ep3/maps-offline/m000073p-g.mnm deleted file mode 100755 index 0bb2ee4e..00000000 Binary files a/system/ep3/maps-offline/m000073p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000073p-j.mnm b/system/ep3/maps-offline/m000073p-j.mnm deleted file mode 100755 index d79867c1..00000000 Binary files a/system/ep3/maps-offline/m000073p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000073p-s.mnm b/system/ep3/maps-offline/m000073p-s.mnm deleted file mode 100755 index 79b2f139..00000000 Binary files a/system/ep3/maps-offline/m000073p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000081p-e.mnm b/system/ep3/maps-offline/m000081p-e.mnm deleted file mode 100755 index a9e0e3f1..00000000 Binary files a/system/ep3/maps-offline/m000081p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000081p-f.mnm b/system/ep3/maps-offline/m000081p-f.mnm deleted file mode 100755 index a439d1eb..00000000 Binary files a/system/ep3/maps-offline/m000081p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000081p-g.mnm b/system/ep3/maps-offline/m000081p-g.mnm deleted file mode 100755 index 5b61714c..00000000 Binary files a/system/ep3/maps-offline/m000081p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000081p-j.mnm b/system/ep3/maps-offline/m000081p-j.mnm deleted file mode 100755 index dbdec7ae..00000000 Binary files a/system/ep3/maps-offline/m000081p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000081p-s.mnm b/system/ep3/maps-offline/m000081p-s.mnm deleted file mode 100755 index 4f71c6b5..00000000 Binary files a/system/ep3/maps-offline/m000081p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000082p-e.mnm b/system/ep3/maps-offline/m000082p-e.mnm deleted file mode 100755 index a5f9fc95..00000000 Binary files a/system/ep3/maps-offline/m000082p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000082p-f.mnm b/system/ep3/maps-offline/m000082p-f.mnm deleted file mode 100755 index a11881b9..00000000 Binary files a/system/ep3/maps-offline/m000082p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000082p-g.mnm b/system/ep3/maps-offline/m000082p-g.mnm deleted file mode 100755 index 69e67d6d..00000000 Binary files a/system/ep3/maps-offline/m000082p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000082p-j.mnm b/system/ep3/maps-offline/m000082p-j.mnm deleted file mode 100755 index 1bf14480..00000000 Binary files a/system/ep3/maps-offline/m000082p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000082p-s.mnm b/system/ep3/maps-offline/m000082p-s.mnm deleted file mode 100755 index 6e97a767..00000000 Binary files a/system/ep3/maps-offline/m000082p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000083p-e.mnm b/system/ep3/maps-offline/m000083p-e.mnm deleted file mode 100755 index 13d6037c..00000000 Binary files a/system/ep3/maps-offline/m000083p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000083p-f.mnm b/system/ep3/maps-offline/m000083p-f.mnm deleted file mode 100755 index a17070b7..00000000 Binary files a/system/ep3/maps-offline/m000083p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000083p-g.mnm b/system/ep3/maps-offline/m000083p-g.mnm deleted file mode 100755 index e6e6f942..00000000 Binary files a/system/ep3/maps-offline/m000083p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000083p-j.mnm b/system/ep3/maps-offline/m000083p-j.mnm deleted file mode 100755 index 13094363..00000000 Binary files a/system/ep3/maps-offline/m000083p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000083p-s.mnm b/system/ep3/maps-offline/m000083p-s.mnm deleted file mode 100755 index cc163576..00000000 Binary files a/system/ep3/maps-offline/m000083p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000091p-e.mnm b/system/ep3/maps-offline/m000091p-e.mnm deleted file mode 100755 index ac628a83..00000000 Binary files a/system/ep3/maps-offline/m000091p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000091p-f.mnm b/system/ep3/maps-offline/m000091p-f.mnm deleted file mode 100755 index 6f87d753..00000000 Binary files a/system/ep3/maps-offline/m000091p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000091p-g.mnm b/system/ep3/maps-offline/m000091p-g.mnm deleted file mode 100755 index dfc7d0de..00000000 Binary files a/system/ep3/maps-offline/m000091p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000091p-j.mnm b/system/ep3/maps-offline/m000091p-j.mnm deleted file mode 100755 index d2150728..00000000 Binary files a/system/ep3/maps-offline/m000091p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000091p-s.mnm b/system/ep3/maps-offline/m000091p-s.mnm deleted file mode 100755 index f4426c28..00000000 Binary files a/system/ep3/maps-offline/m000091p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000092p-e.mnm b/system/ep3/maps-offline/m000092p-e.mnm deleted file mode 100755 index 50ac60ed..00000000 Binary files a/system/ep3/maps-offline/m000092p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000092p-f.mnm b/system/ep3/maps-offline/m000092p-f.mnm deleted file mode 100755 index fbf7695e..00000000 Binary files a/system/ep3/maps-offline/m000092p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000092p-g.mnm b/system/ep3/maps-offline/m000092p-g.mnm deleted file mode 100755 index a2a3d334..00000000 Binary files a/system/ep3/maps-offline/m000092p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000092p-j.mnm b/system/ep3/maps-offline/m000092p-j.mnm deleted file mode 100755 index 80215279..00000000 Binary files a/system/ep3/maps-offline/m000092p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000092p-s.mnm b/system/ep3/maps-offline/m000092p-s.mnm deleted file mode 100755 index 12b498c2..00000000 Binary files a/system/ep3/maps-offline/m000092p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000093p-e.mnm b/system/ep3/maps-offline/m000093p-e.mnm deleted file mode 100755 index fd2b1ea8..00000000 Binary files a/system/ep3/maps-offline/m000093p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000093p-f.mnm b/system/ep3/maps-offline/m000093p-f.mnm deleted file mode 100755 index 61241681..00000000 Binary files a/system/ep3/maps-offline/m000093p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000093p-g.mnm b/system/ep3/maps-offline/m000093p-g.mnm deleted file mode 100755 index a74686a2..00000000 Binary files a/system/ep3/maps-offline/m000093p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000093p-j.mnm b/system/ep3/maps-offline/m000093p-j.mnm deleted file mode 100755 index 54d2270c..00000000 Binary files a/system/ep3/maps-offline/m000093p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000093p-s.mnm b/system/ep3/maps-offline/m000093p-s.mnm deleted file mode 100755 index ccfc0e32..00000000 Binary files a/system/ep3/maps-offline/m000093p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000101p-e.mnm b/system/ep3/maps-offline/m000101p-e.mnm deleted file mode 100755 index 660b62e4..00000000 Binary files a/system/ep3/maps-offline/m000101p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000101p-f.mnm b/system/ep3/maps-offline/m000101p-f.mnm deleted file mode 100755 index b8e5fcd0..00000000 Binary files a/system/ep3/maps-offline/m000101p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000101p-g.mnm b/system/ep3/maps-offline/m000101p-g.mnm deleted file mode 100755 index 1d230443..00000000 Binary files a/system/ep3/maps-offline/m000101p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000101p-j.mnm b/system/ep3/maps-offline/m000101p-j.mnm deleted file mode 100755 index 9d923beb..00000000 Binary files a/system/ep3/maps-offline/m000101p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000101p-s.mnm b/system/ep3/maps-offline/m000101p-s.mnm deleted file mode 100755 index 386e20e4..00000000 Binary files a/system/ep3/maps-offline/m000101p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000102p-e.mnm b/system/ep3/maps-offline/m000102p-e.mnm deleted file mode 100755 index 4f8d6f71..00000000 Binary files a/system/ep3/maps-offline/m000102p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000102p-f.mnm b/system/ep3/maps-offline/m000102p-f.mnm deleted file mode 100755 index 7d9775b9..00000000 Binary files a/system/ep3/maps-offline/m000102p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000102p-g.mnm b/system/ep3/maps-offline/m000102p-g.mnm deleted file mode 100755 index 52f2808b..00000000 Binary files a/system/ep3/maps-offline/m000102p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000102p-j.mnm b/system/ep3/maps-offline/m000102p-j.mnm deleted file mode 100755 index f7b7e761..00000000 Binary files a/system/ep3/maps-offline/m000102p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000102p-s.mnm b/system/ep3/maps-offline/m000102p-s.mnm deleted file mode 100755 index f2d9a4e4..00000000 Binary files a/system/ep3/maps-offline/m000102p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000103p-e.mnm b/system/ep3/maps-offline/m000103p-e.mnm deleted file mode 100755 index d82b2296..00000000 Binary files a/system/ep3/maps-offline/m000103p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000103p-f.mnm b/system/ep3/maps-offline/m000103p-f.mnm deleted file mode 100755 index 84efa88a..00000000 Binary files a/system/ep3/maps-offline/m000103p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000103p-g.mnm b/system/ep3/maps-offline/m000103p-g.mnm deleted file mode 100755 index d6be71dd..00000000 Binary files a/system/ep3/maps-offline/m000103p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000103p-j.mnm b/system/ep3/maps-offline/m000103p-j.mnm deleted file mode 100755 index 19b9f1d3..00000000 Binary files a/system/ep3/maps-offline/m000103p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000103p-s.mnm b/system/ep3/maps-offline/m000103p-s.mnm deleted file mode 100755 index 17366897..00000000 Binary files a/system/ep3/maps-offline/m000103p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000111p-e.mnm b/system/ep3/maps-offline/m000111p-e.mnm deleted file mode 100755 index 6156d353..00000000 Binary files a/system/ep3/maps-offline/m000111p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000111p-f.mnm b/system/ep3/maps-offline/m000111p-f.mnm deleted file mode 100755 index 610489c0..00000000 Binary files a/system/ep3/maps-offline/m000111p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000111p-g.mnm b/system/ep3/maps-offline/m000111p-g.mnm deleted file mode 100755 index 1dc4d83f..00000000 Binary files a/system/ep3/maps-offline/m000111p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000111p-j.mnm b/system/ep3/maps-offline/m000111p-j.mnm deleted file mode 100755 index c37f9243..00000000 Binary files a/system/ep3/maps-offline/m000111p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000111p-s.mnm b/system/ep3/maps-offline/m000111p-s.mnm deleted file mode 100755 index 2585d72b..00000000 Binary files a/system/ep3/maps-offline/m000111p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000112p-e.mnm b/system/ep3/maps-offline/m000112p-e.mnm deleted file mode 100755 index cbaee1c9..00000000 Binary files a/system/ep3/maps-offline/m000112p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000112p-f.mnm b/system/ep3/maps-offline/m000112p-f.mnm deleted file mode 100755 index 8bb4469c..00000000 Binary files a/system/ep3/maps-offline/m000112p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000112p-g.mnm b/system/ep3/maps-offline/m000112p-g.mnm deleted file mode 100755 index e7d65830..00000000 Binary files a/system/ep3/maps-offline/m000112p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000112p-j.mnm b/system/ep3/maps-offline/m000112p-j.mnm deleted file mode 100755 index 83992ca4..00000000 Binary files a/system/ep3/maps-offline/m000112p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000112p-s.mnm b/system/ep3/maps-offline/m000112p-s.mnm deleted file mode 100755 index 88e1a0aa..00000000 Binary files a/system/ep3/maps-offline/m000112p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000113p-e.mnm b/system/ep3/maps-offline/m000113p-e.mnm deleted file mode 100755 index 6997037e..00000000 Binary files a/system/ep3/maps-offline/m000113p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000113p-f.mnm b/system/ep3/maps-offline/m000113p-f.mnm deleted file mode 100755 index 553e2c56..00000000 Binary files a/system/ep3/maps-offline/m000113p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000113p-g.mnm b/system/ep3/maps-offline/m000113p-g.mnm deleted file mode 100755 index e91df06f..00000000 Binary files a/system/ep3/maps-offline/m000113p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000113p-j.mnm b/system/ep3/maps-offline/m000113p-j.mnm deleted file mode 100755 index 5ec5b832..00000000 Binary files a/system/ep3/maps-offline/m000113p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000113p-s.mnm b/system/ep3/maps-offline/m000113p-s.mnm deleted file mode 100755 index 58cb33e0..00000000 Binary files a/system/ep3/maps-offline/m000113p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000121p-e.mnm b/system/ep3/maps-offline/m000121p-e.mnm deleted file mode 100755 index 1fc191a9..00000000 Binary files a/system/ep3/maps-offline/m000121p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000121p-f.mnm b/system/ep3/maps-offline/m000121p-f.mnm deleted file mode 100755 index 53c04b80..00000000 Binary files a/system/ep3/maps-offline/m000121p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000121p-g.mnm b/system/ep3/maps-offline/m000121p-g.mnm deleted file mode 100755 index 6ffa21fa..00000000 Binary files a/system/ep3/maps-offline/m000121p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000121p-j.mnm b/system/ep3/maps-offline/m000121p-j.mnm deleted file mode 100755 index 7a8f2b13..00000000 Binary files a/system/ep3/maps-offline/m000121p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000121p-s.mnm b/system/ep3/maps-offline/m000121p-s.mnm deleted file mode 100755 index c7809cf9..00000000 Binary files a/system/ep3/maps-offline/m000121p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000122p-e.mnm b/system/ep3/maps-offline/m000122p-e.mnm deleted file mode 100755 index a2009754..00000000 Binary files a/system/ep3/maps-offline/m000122p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000122p-f.mnm b/system/ep3/maps-offline/m000122p-f.mnm deleted file mode 100755 index abcd6651..00000000 Binary files a/system/ep3/maps-offline/m000122p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000122p-g.mnm b/system/ep3/maps-offline/m000122p-g.mnm deleted file mode 100755 index 5b580cd1..00000000 Binary files a/system/ep3/maps-offline/m000122p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000122p-j.mnm b/system/ep3/maps-offline/m000122p-j.mnm deleted file mode 100755 index a1d6c6a6..00000000 Binary files a/system/ep3/maps-offline/m000122p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000122p-s.mnm b/system/ep3/maps-offline/m000122p-s.mnm deleted file mode 100755 index ad033fb2..00000000 Binary files a/system/ep3/maps-offline/m000122p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000123p-e.mnm b/system/ep3/maps-offline/m000123p-e.mnm deleted file mode 100755 index dd842419..00000000 Binary files a/system/ep3/maps-offline/m000123p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000123p-f.mnm b/system/ep3/maps-offline/m000123p-f.mnm deleted file mode 100755 index b5fd04af..00000000 Binary files a/system/ep3/maps-offline/m000123p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000123p-g.mnm b/system/ep3/maps-offline/m000123p-g.mnm deleted file mode 100755 index 15c47932..00000000 Binary files a/system/ep3/maps-offline/m000123p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000123p-j.mnm b/system/ep3/maps-offline/m000123p-j.mnm deleted file mode 100755 index 6936dcd5..00000000 Binary files a/system/ep3/maps-offline/m000123p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000123p-s.mnm b/system/ep3/maps-offline/m000123p-s.mnm deleted file mode 100755 index 326b3b52..00000000 Binary files a/system/ep3/maps-offline/m000123p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000131p-e.mnm b/system/ep3/maps-offline/m000131p-e.mnm deleted file mode 100755 index 6d9a34b5..00000000 Binary files a/system/ep3/maps-offline/m000131p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000131p-f.mnm b/system/ep3/maps-offline/m000131p-f.mnm deleted file mode 100755 index e8d02c4f..00000000 Binary files a/system/ep3/maps-offline/m000131p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000131p-g.mnm b/system/ep3/maps-offline/m000131p-g.mnm deleted file mode 100755 index 541c809d..00000000 Binary files a/system/ep3/maps-offline/m000131p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000131p-j.mnm b/system/ep3/maps-offline/m000131p-j.mnm deleted file mode 100755 index f2adc3f9..00000000 Binary files a/system/ep3/maps-offline/m000131p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000131p-s.mnm b/system/ep3/maps-offline/m000131p-s.mnm deleted file mode 100755 index e5539742..00000000 Binary files a/system/ep3/maps-offline/m000131p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000141p-e.mnm b/system/ep3/maps-offline/m000141p-e.mnm deleted file mode 100755 index b3fe7d0c..00000000 Binary files a/system/ep3/maps-offline/m000141p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000141p-f.mnm b/system/ep3/maps-offline/m000141p-f.mnm deleted file mode 100755 index 299ba9ef..00000000 Binary files a/system/ep3/maps-offline/m000141p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000141p-g.mnm b/system/ep3/maps-offline/m000141p-g.mnm deleted file mode 100755 index 16b4592d..00000000 Binary files a/system/ep3/maps-offline/m000141p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000141p-j.mnm b/system/ep3/maps-offline/m000141p-j.mnm deleted file mode 100755 index 8a436a79..00000000 Binary files a/system/ep3/maps-offline/m000141p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000141p-s.mnm b/system/ep3/maps-offline/m000141p-s.mnm deleted file mode 100755 index ea6a731d..00000000 Binary files a/system/ep3/maps-offline/m000141p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000142p-e.mnm b/system/ep3/maps-offline/m000142p-e.mnm deleted file mode 100755 index 02547725..00000000 Binary files a/system/ep3/maps-offline/m000142p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000142p-f.mnm b/system/ep3/maps-offline/m000142p-f.mnm deleted file mode 100755 index 7e1be03b..00000000 Binary files a/system/ep3/maps-offline/m000142p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000142p-g.mnm b/system/ep3/maps-offline/m000142p-g.mnm deleted file mode 100755 index 2b468753..00000000 Binary files a/system/ep3/maps-offline/m000142p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000142p-j.mnm b/system/ep3/maps-offline/m000142p-j.mnm deleted file mode 100755 index 5a2ce0be..00000000 Binary files a/system/ep3/maps-offline/m000142p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000142p-s.mnm b/system/ep3/maps-offline/m000142p-s.mnm deleted file mode 100755 index 87957ab1..00000000 Binary files a/system/ep3/maps-offline/m000142p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000143p-e.mnm b/system/ep3/maps-offline/m000143p-e.mnm deleted file mode 100755 index 2a052567..00000000 Binary files a/system/ep3/maps-offline/m000143p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000143p-f.mnm b/system/ep3/maps-offline/m000143p-f.mnm deleted file mode 100755 index 4eddd30d..00000000 Binary files a/system/ep3/maps-offline/m000143p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000143p-g.mnm b/system/ep3/maps-offline/m000143p-g.mnm deleted file mode 100755 index aa1b49b3..00000000 Binary files a/system/ep3/maps-offline/m000143p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000143p-j.mnm b/system/ep3/maps-offline/m000143p-j.mnm deleted file mode 100755 index 6bd25bec..00000000 Binary files a/system/ep3/maps-offline/m000143p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000143p-s.mnm b/system/ep3/maps-offline/m000143p-s.mnm deleted file mode 100755 index 936322d8..00000000 Binary files a/system/ep3/maps-offline/m000143p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000151p-e.mnm b/system/ep3/maps-offline/m000151p-e.mnm deleted file mode 100755 index 4bc49cd7..00000000 Binary files a/system/ep3/maps-offline/m000151p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000151p-f.mnm b/system/ep3/maps-offline/m000151p-f.mnm deleted file mode 100755 index 2dadbe0b..00000000 Binary files a/system/ep3/maps-offline/m000151p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000151p-g.mnm b/system/ep3/maps-offline/m000151p-g.mnm deleted file mode 100755 index bbc643fc..00000000 Binary files a/system/ep3/maps-offline/m000151p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000151p-j.mnm b/system/ep3/maps-offline/m000151p-j.mnm deleted file mode 100755 index 09fe29da..00000000 Binary files a/system/ep3/maps-offline/m000151p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000151p-s.mnm b/system/ep3/maps-offline/m000151p-s.mnm deleted file mode 100755 index c319d6da..00000000 Binary files a/system/ep3/maps-offline/m000151p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000152p-e.mnm b/system/ep3/maps-offline/m000152p-e.mnm deleted file mode 100755 index c87e37b3..00000000 Binary files a/system/ep3/maps-offline/m000152p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000152p-f.mnm b/system/ep3/maps-offline/m000152p-f.mnm deleted file mode 100755 index 421c09aa..00000000 Binary files a/system/ep3/maps-offline/m000152p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000152p-g.mnm b/system/ep3/maps-offline/m000152p-g.mnm deleted file mode 100755 index 98b693e5..00000000 Binary files a/system/ep3/maps-offline/m000152p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000152p-j.mnm b/system/ep3/maps-offline/m000152p-j.mnm deleted file mode 100755 index e83820cb..00000000 Binary files a/system/ep3/maps-offline/m000152p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000152p-s.mnm b/system/ep3/maps-offline/m000152p-s.mnm deleted file mode 100755 index d7264a72..00000000 Binary files a/system/ep3/maps-offline/m000152p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000153p-e.mnm b/system/ep3/maps-offline/m000153p-e.mnm deleted file mode 100755 index 459228a0..00000000 Binary files a/system/ep3/maps-offline/m000153p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000153p-f.mnm b/system/ep3/maps-offline/m000153p-f.mnm deleted file mode 100755 index 2b5f8ef4..00000000 Binary files a/system/ep3/maps-offline/m000153p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000153p-g.mnm b/system/ep3/maps-offline/m000153p-g.mnm deleted file mode 100755 index 6ab361a6..00000000 Binary files a/system/ep3/maps-offline/m000153p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000153p-j.mnm b/system/ep3/maps-offline/m000153p-j.mnm deleted file mode 100755 index 551b1b4c..00000000 Binary files a/system/ep3/maps-offline/m000153p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000153p-s.mnm b/system/ep3/maps-offline/m000153p-s.mnm deleted file mode 100755 index 98189cc2..00000000 Binary files a/system/ep3/maps-offline/m000153p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000161p-e.mnm b/system/ep3/maps-offline/m000161p-e.mnm deleted file mode 100755 index 14c7ca27..00000000 Binary files a/system/ep3/maps-offline/m000161p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000161p-f.mnm b/system/ep3/maps-offline/m000161p-f.mnm deleted file mode 100755 index 489c8cf4..00000000 Binary files a/system/ep3/maps-offline/m000161p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000161p-g.mnm b/system/ep3/maps-offline/m000161p-g.mnm deleted file mode 100755 index d2c3cb90..00000000 Binary files a/system/ep3/maps-offline/m000161p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000161p-j.mnm b/system/ep3/maps-offline/m000161p-j.mnm deleted file mode 100755 index 1684e0fa..00000000 Binary files a/system/ep3/maps-offline/m000161p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000161p-s.mnm b/system/ep3/maps-offline/m000161p-s.mnm deleted file mode 100755 index 859c1789..00000000 Binary files a/system/ep3/maps-offline/m000161p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000162p-e.mnm b/system/ep3/maps-offline/m000162p-e.mnm deleted file mode 100755 index db72b983..00000000 Binary files a/system/ep3/maps-offline/m000162p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000162p-f.mnm b/system/ep3/maps-offline/m000162p-f.mnm deleted file mode 100755 index 134fb9d0..00000000 Binary files a/system/ep3/maps-offline/m000162p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000162p-g.mnm b/system/ep3/maps-offline/m000162p-g.mnm deleted file mode 100755 index 132254dd..00000000 Binary files a/system/ep3/maps-offline/m000162p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000162p-j.mnm b/system/ep3/maps-offline/m000162p-j.mnm deleted file mode 100755 index 5476cd2d..00000000 Binary files a/system/ep3/maps-offline/m000162p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000162p-s.mnm b/system/ep3/maps-offline/m000162p-s.mnm deleted file mode 100755 index 3ba4d406..00000000 Binary files a/system/ep3/maps-offline/m000162p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000163p-e.mnm b/system/ep3/maps-offline/m000163p-e.mnm deleted file mode 100755 index 6eb4570b..00000000 Binary files a/system/ep3/maps-offline/m000163p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000163p-f.mnm b/system/ep3/maps-offline/m000163p-f.mnm deleted file mode 100755 index 170b1532..00000000 Binary files a/system/ep3/maps-offline/m000163p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000163p-g.mnm b/system/ep3/maps-offline/m000163p-g.mnm deleted file mode 100755 index e87c3b4c..00000000 Binary files a/system/ep3/maps-offline/m000163p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000163p-j.mnm b/system/ep3/maps-offline/m000163p-j.mnm deleted file mode 100755 index 4dd5015d..00000000 Binary files a/system/ep3/maps-offline/m000163p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000163p-s.mnm b/system/ep3/maps-offline/m000163p-s.mnm deleted file mode 100755 index af8bf855..00000000 Binary files a/system/ep3/maps-offline/m000163p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000171p-e.mnm b/system/ep3/maps-offline/m000171p-e.mnm deleted file mode 100755 index 2422ffa6..00000000 Binary files a/system/ep3/maps-offline/m000171p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000171p-f.mnm b/system/ep3/maps-offline/m000171p-f.mnm deleted file mode 100755 index 82a92bcf..00000000 Binary files a/system/ep3/maps-offline/m000171p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000171p-g.mnm b/system/ep3/maps-offline/m000171p-g.mnm deleted file mode 100755 index 1f7420ee..00000000 Binary files a/system/ep3/maps-offline/m000171p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000171p-j.mnm b/system/ep3/maps-offline/m000171p-j.mnm deleted file mode 100755 index 6615d578..00000000 Binary files a/system/ep3/maps-offline/m000171p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000171p-s.mnm b/system/ep3/maps-offline/m000171p-s.mnm deleted file mode 100755 index d3da6bba..00000000 Binary files a/system/ep3/maps-offline/m000171p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000172p-e.mnm b/system/ep3/maps-offline/m000172p-e.mnm deleted file mode 100755 index 3066d12e..00000000 Binary files a/system/ep3/maps-offline/m000172p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000172p-f.mnm b/system/ep3/maps-offline/m000172p-f.mnm deleted file mode 100755 index f2c33a50..00000000 Binary files a/system/ep3/maps-offline/m000172p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000172p-g.mnm b/system/ep3/maps-offline/m000172p-g.mnm deleted file mode 100755 index 78e61cc4..00000000 Binary files a/system/ep3/maps-offline/m000172p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000172p-j.mnm b/system/ep3/maps-offline/m000172p-j.mnm deleted file mode 100755 index bc3c6703..00000000 Binary files a/system/ep3/maps-offline/m000172p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000172p-s.mnm b/system/ep3/maps-offline/m000172p-s.mnm deleted file mode 100755 index 789a619b..00000000 Binary files a/system/ep3/maps-offline/m000172p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000173p-e.mnm b/system/ep3/maps-offline/m000173p-e.mnm deleted file mode 100755 index a0342d45..00000000 Binary files a/system/ep3/maps-offline/m000173p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000173p-f.mnm b/system/ep3/maps-offline/m000173p-f.mnm deleted file mode 100755 index d76cf75a..00000000 Binary files a/system/ep3/maps-offline/m000173p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000173p-g.mnm b/system/ep3/maps-offline/m000173p-g.mnm deleted file mode 100755 index d1cee428..00000000 Binary files a/system/ep3/maps-offline/m000173p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000173p-j.mnm b/system/ep3/maps-offline/m000173p-j.mnm deleted file mode 100755 index 6b20dace..00000000 Binary files a/system/ep3/maps-offline/m000173p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000173p-s.mnm b/system/ep3/maps-offline/m000173p-s.mnm deleted file mode 100755 index 42556fd8..00000000 Binary files a/system/ep3/maps-offline/m000173p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000181p-e.mnm b/system/ep3/maps-offline/m000181p-e.mnm deleted file mode 100755 index 85393e84..00000000 Binary files a/system/ep3/maps-offline/m000181p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000181p-f.mnm b/system/ep3/maps-offline/m000181p-f.mnm deleted file mode 100755 index bc1d5982..00000000 Binary files a/system/ep3/maps-offline/m000181p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000181p-g.mnm b/system/ep3/maps-offline/m000181p-g.mnm deleted file mode 100755 index 08aa72ec..00000000 Binary files a/system/ep3/maps-offline/m000181p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000181p-j.mnm b/system/ep3/maps-offline/m000181p-j.mnm deleted file mode 100755 index 3b9e2f1b..00000000 Binary files a/system/ep3/maps-offline/m000181p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000181p-s.mnm b/system/ep3/maps-offline/m000181p-s.mnm deleted file mode 100755 index 909c3609..00000000 Binary files a/system/ep3/maps-offline/m000181p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000182p-e.mnm b/system/ep3/maps-offline/m000182p-e.mnm deleted file mode 100755 index ce3f1272..00000000 Binary files a/system/ep3/maps-offline/m000182p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000182p-f.mnm b/system/ep3/maps-offline/m000182p-f.mnm deleted file mode 100755 index f45c0d2c..00000000 Binary files a/system/ep3/maps-offline/m000182p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000182p-g.mnm b/system/ep3/maps-offline/m000182p-g.mnm deleted file mode 100755 index f2f88c4a..00000000 Binary files a/system/ep3/maps-offline/m000182p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000182p-j.mnm b/system/ep3/maps-offline/m000182p-j.mnm deleted file mode 100755 index 7ace9754..00000000 Binary files a/system/ep3/maps-offline/m000182p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000182p-s.mnm b/system/ep3/maps-offline/m000182p-s.mnm deleted file mode 100755 index 93a8258b..00000000 Binary files a/system/ep3/maps-offline/m000182p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000183p-e.mnm b/system/ep3/maps-offline/m000183p-e.mnm deleted file mode 100755 index 217ba294..00000000 Binary files a/system/ep3/maps-offline/m000183p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000183p-f.mnm b/system/ep3/maps-offline/m000183p-f.mnm deleted file mode 100755 index 347039f4..00000000 Binary files a/system/ep3/maps-offline/m000183p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000183p-g.mnm b/system/ep3/maps-offline/m000183p-g.mnm deleted file mode 100755 index 5e33e404..00000000 Binary files a/system/ep3/maps-offline/m000183p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000183p-j.mnm b/system/ep3/maps-offline/m000183p-j.mnm deleted file mode 100755 index 964c032c..00000000 Binary files a/system/ep3/maps-offline/m000183p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000183p-s.mnm b/system/ep3/maps-offline/m000183p-s.mnm deleted file mode 100755 index d644bc03..00000000 Binary files a/system/ep3/maps-offline/m000183p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000191p-e.mnm b/system/ep3/maps-offline/m000191p-e.mnm deleted file mode 100755 index ac12dfe9..00000000 Binary files a/system/ep3/maps-offline/m000191p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000191p-f.mnm b/system/ep3/maps-offline/m000191p-f.mnm deleted file mode 100755 index 4e8bb291..00000000 Binary files a/system/ep3/maps-offline/m000191p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000191p-g.mnm b/system/ep3/maps-offline/m000191p-g.mnm deleted file mode 100755 index 75d758db..00000000 Binary files a/system/ep3/maps-offline/m000191p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000191p-j.mnm b/system/ep3/maps-offline/m000191p-j.mnm deleted file mode 100755 index 5cad34da..00000000 Binary files a/system/ep3/maps-offline/m000191p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000191p-s.mnm b/system/ep3/maps-offline/m000191p-s.mnm deleted file mode 100755 index f92d8ae2..00000000 Binary files a/system/ep3/maps-offline/m000191p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000192p-e.mnm b/system/ep3/maps-offline/m000192p-e.mnm deleted file mode 100755 index a01693e6..00000000 Binary files a/system/ep3/maps-offline/m000192p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000192p-f.mnm b/system/ep3/maps-offline/m000192p-f.mnm deleted file mode 100755 index 13f19f4f..00000000 Binary files a/system/ep3/maps-offline/m000192p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000192p-g.mnm b/system/ep3/maps-offline/m000192p-g.mnm deleted file mode 100755 index 77fabf07..00000000 Binary files a/system/ep3/maps-offline/m000192p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000192p-j.mnm b/system/ep3/maps-offline/m000192p-j.mnm deleted file mode 100755 index ea2c6186..00000000 Binary files a/system/ep3/maps-offline/m000192p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000192p-s.mnm b/system/ep3/maps-offline/m000192p-s.mnm deleted file mode 100755 index 12bf18d7..00000000 Binary files a/system/ep3/maps-offline/m000192p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000193p-e.mnm b/system/ep3/maps-offline/m000193p-e.mnm deleted file mode 100755 index d84ad510..00000000 Binary files a/system/ep3/maps-offline/m000193p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000193p-f.mnm b/system/ep3/maps-offline/m000193p-f.mnm deleted file mode 100755 index e1d1cee4..00000000 Binary files a/system/ep3/maps-offline/m000193p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000193p-g.mnm b/system/ep3/maps-offline/m000193p-g.mnm deleted file mode 100755 index bfb8e72f..00000000 Binary files a/system/ep3/maps-offline/m000193p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000193p-j.mnm b/system/ep3/maps-offline/m000193p-j.mnm deleted file mode 100755 index a7a3e54d..00000000 Binary files a/system/ep3/maps-offline/m000193p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000193p-s.mnm b/system/ep3/maps-offline/m000193p-s.mnm deleted file mode 100755 index f93d52cb..00000000 Binary files a/system/ep3/maps-offline/m000193p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000201p-e.mnm b/system/ep3/maps-offline/m000201p-e.mnm deleted file mode 100755 index b681698b..00000000 Binary files a/system/ep3/maps-offline/m000201p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000201p-f.mnm b/system/ep3/maps-offline/m000201p-f.mnm deleted file mode 100755 index 71d9669d..00000000 Binary files a/system/ep3/maps-offline/m000201p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000201p-g.mnm b/system/ep3/maps-offline/m000201p-g.mnm deleted file mode 100755 index 4cd6a61a..00000000 Binary files a/system/ep3/maps-offline/m000201p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000201p-j.mnm b/system/ep3/maps-offline/m000201p-j.mnm deleted file mode 100755 index 617c138c..00000000 Binary files a/system/ep3/maps-offline/m000201p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000201p-s.mnm b/system/ep3/maps-offline/m000201p-s.mnm deleted file mode 100755 index f363b2c0..00000000 Binary files a/system/ep3/maps-offline/m000201p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000202p-e.mnm b/system/ep3/maps-offline/m000202p-e.mnm deleted file mode 100755 index 1146593c..00000000 Binary files a/system/ep3/maps-offline/m000202p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000202p-f.mnm b/system/ep3/maps-offline/m000202p-f.mnm deleted file mode 100755 index 1c73790a..00000000 Binary files a/system/ep3/maps-offline/m000202p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000202p-g.mnm b/system/ep3/maps-offline/m000202p-g.mnm deleted file mode 100755 index 1c73790a..00000000 Binary files a/system/ep3/maps-offline/m000202p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000202p-j.mnm b/system/ep3/maps-offline/m000202p-j.mnm deleted file mode 100755 index 13fc4858..00000000 Binary files a/system/ep3/maps-offline/m000202p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000202p-s.mnm b/system/ep3/maps-offline/m000202p-s.mnm deleted file mode 100755 index 1c73790a..00000000 Binary files a/system/ep3/maps-offline/m000202p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000203p-e.mnm b/system/ep3/maps-offline/m000203p-e.mnm deleted file mode 100755 index e1478b05..00000000 Binary files a/system/ep3/maps-offline/m000203p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000203p-f.mnm b/system/ep3/maps-offline/m000203p-f.mnm deleted file mode 100755 index e6b1af47..00000000 Binary files a/system/ep3/maps-offline/m000203p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000203p-g.mnm b/system/ep3/maps-offline/m000203p-g.mnm deleted file mode 100755 index 624cfaab..00000000 Binary files a/system/ep3/maps-offline/m000203p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000203p-j.mnm b/system/ep3/maps-offline/m000203p-j.mnm deleted file mode 100755 index ecb947e9..00000000 Binary files a/system/ep3/maps-offline/m000203p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000203p-s.mnm b/system/ep3/maps-offline/m000203p-s.mnm deleted file mode 100755 index 2f4cc3f2..00000000 Binary files a/system/ep3/maps-offline/m000203p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000204p-e.mnm b/system/ep3/maps-offline/m000204p-e.mnm deleted file mode 100755 index 59d18637..00000000 Binary files a/system/ep3/maps-offline/m000204p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000204p-f.mnm b/system/ep3/maps-offline/m000204p-f.mnm deleted file mode 100755 index d2465583..00000000 Binary files a/system/ep3/maps-offline/m000204p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000204p-g.mnm b/system/ep3/maps-offline/m000204p-g.mnm deleted file mode 100755 index 8d3eefac..00000000 Binary files a/system/ep3/maps-offline/m000204p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000204p-j.mnm b/system/ep3/maps-offline/m000204p-j.mnm deleted file mode 100755 index f0439f41..00000000 Binary files a/system/ep3/maps-offline/m000204p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000204p-s.mnm b/system/ep3/maps-offline/m000204p-s.mnm deleted file mode 100755 index ee163b26..00000000 Binary files a/system/ep3/maps-offline/m000204p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000211p-e.mnm b/system/ep3/maps-offline/m000211p-e.mnm deleted file mode 100755 index b6541746..00000000 Binary files a/system/ep3/maps-offline/m000211p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000211p-f.mnm b/system/ep3/maps-offline/m000211p-f.mnm deleted file mode 100755 index a88e4b54..00000000 Binary files a/system/ep3/maps-offline/m000211p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000211p-g.mnm b/system/ep3/maps-offline/m000211p-g.mnm deleted file mode 100755 index e8cb8805..00000000 Binary files a/system/ep3/maps-offline/m000211p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000211p-j.mnm b/system/ep3/maps-offline/m000211p-j.mnm deleted file mode 100755 index 3749d229..00000000 Binary files a/system/ep3/maps-offline/m000211p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000211p-s.mnm b/system/ep3/maps-offline/m000211p-s.mnm deleted file mode 100755 index 29b33a5f..00000000 Binary files a/system/ep3/maps-offline/m000211p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000221p-e.mnm b/system/ep3/maps-offline/m000221p-e.mnm deleted file mode 100755 index cd2aceeb..00000000 Binary files a/system/ep3/maps-offline/m000221p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000221p-f.mnm b/system/ep3/maps-offline/m000221p-f.mnm deleted file mode 100755 index e0edb1fc..00000000 Binary files a/system/ep3/maps-offline/m000221p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000221p-g.mnm b/system/ep3/maps-offline/m000221p-g.mnm deleted file mode 100755 index 52fb79f8..00000000 Binary files a/system/ep3/maps-offline/m000221p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000221p-j.mnm b/system/ep3/maps-offline/m000221p-j.mnm deleted file mode 100755 index 4e0f0826..00000000 Binary files a/system/ep3/maps-offline/m000221p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000221p-s.mnm b/system/ep3/maps-offline/m000221p-s.mnm deleted file mode 100755 index 8b99b3a8..00000000 Binary files a/system/ep3/maps-offline/m000221p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000222p-e.mnm b/system/ep3/maps-offline/m000222p-e.mnm deleted file mode 100755 index 5823a0bf..00000000 Binary files a/system/ep3/maps-offline/m000222p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000222p-f.mnm b/system/ep3/maps-offline/m000222p-f.mnm deleted file mode 100755 index 5bb9d659..00000000 Binary files a/system/ep3/maps-offline/m000222p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000222p-g.mnm b/system/ep3/maps-offline/m000222p-g.mnm deleted file mode 100755 index eae7b4af..00000000 Binary files a/system/ep3/maps-offline/m000222p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000222p-j.mnm b/system/ep3/maps-offline/m000222p-j.mnm deleted file mode 100755 index 9e08ac0e..00000000 Binary files a/system/ep3/maps-offline/m000222p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000222p-s.mnm b/system/ep3/maps-offline/m000222p-s.mnm deleted file mode 100755 index e6b286fc..00000000 Binary files a/system/ep3/maps-offline/m000222p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000223p-e.mnm b/system/ep3/maps-offline/m000223p-e.mnm deleted file mode 100755 index 1f71ee51..00000000 Binary files a/system/ep3/maps-offline/m000223p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000223p-f.mnm b/system/ep3/maps-offline/m000223p-f.mnm deleted file mode 100755 index 1f71ee51..00000000 Binary files a/system/ep3/maps-offline/m000223p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000223p-g.mnm b/system/ep3/maps-offline/m000223p-g.mnm deleted file mode 100755 index 1f71ee51..00000000 Binary files a/system/ep3/maps-offline/m000223p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000223p-j.mnm b/system/ep3/maps-offline/m000223p-j.mnm deleted file mode 100755 index 4102e41f..00000000 Binary files a/system/ep3/maps-offline/m000223p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000223p-s.mnm b/system/ep3/maps-offline/m000223p-s.mnm deleted file mode 100755 index 1f71ee51..00000000 Binary files a/system/ep3/maps-offline/m000223p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000261p-e.mnm b/system/ep3/maps-offline/m000261p-e.mnm deleted file mode 100755 index 296e885a..00000000 Binary files a/system/ep3/maps-offline/m000261p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000261p-f.mnm b/system/ep3/maps-offline/m000261p-f.mnm deleted file mode 100755 index d213bc88..00000000 Binary files a/system/ep3/maps-offline/m000261p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000261p-g.mnm b/system/ep3/maps-offline/m000261p-g.mnm deleted file mode 100755 index 416716b0..00000000 Binary files a/system/ep3/maps-offline/m000261p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000261p-j.mnm b/system/ep3/maps-offline/m000261p-j.mnm deleted file mode 100755 index 268d8505..00000000 Binary files a/system/ep3/maps-offline/m000261p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000261p-s.mnm b/system/ep3/maps-offline/m000261p-s.mnm deleted file mode 100755 index ee548bab..00000000 Binary files a/system/ep3/maps-offline/m000261p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000271p-e.mnm b/system/ep3/maps-offline/m000271p-e.mnm deleted file mode 100755 index aa8ed94d..00000000 Binary files a/system/ep3/maps-offline/m000271p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000271p-f.mnm b/system/ep3/maps-offline/m000271p-f.mnm deleted file mode 100755 index e8598779..00000000 Binary files a/system/ep3/maps-offline/m000271p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000271p-g.mnm b/system/ep3/maps-offline/m000271p-g.mnm deleted file mode 100755 index 537bf15f..00000000 Binary files a/system/ep3/maps-offline/m000271p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000271p-j.mnm b/system/ep3/maps-offline/m000271p-j.mnm deleted file mode 100755 index bee519d1..00000000 Binary files a/system/ep3/maps-offline/m000271p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000271p-s.mnm b/system/ep3/maps-offline/m000271p-s.mnm deleted file mode 100755 index 37710f72..00000000 Binary files a/system/ep3/maps-offline/m000271p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000281p-e.mnm b/system/ep3/maps-offline/m000281p-e.mnm deleted file mode 100755 index afdbff70..00000000 Binary files a/system/ep3/maps-offline/m000281p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000281p-f.mnm b/system/ep3/maps-offline/m000281p-f.mnm deleted file mode 100755 index 598c654b..00000000 Binary files a/system/ep3/maps-offline/m000281p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000281p-g.mnm b/system/ep3/maps-offline/m000281p-g.mnm deleted file mode 100755 index bfab6e51..00000000 Binary files a/system/ep3/maps-offline/m000281p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000281p-j.mnm b/system/ep3/maps-offline/m000281p-j.mnm deleted file mode 100755 index 08950e08..00000000 Binary files a/system/ep3/maps-offline/m000281p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000281p-s.mnm b/system/ep3/maps-offline/m000281p-s.mnm deleted file mode 100755 index 8246d72c..00000000 Binary files a/system/ep3/maps-offline/m000281p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000282p-e.mnm b/system/ep3/maps-offline/m000282p-e.mnm deleted file mode 100755 index 70635544..00000000 Binary files a/system/ep3/maps-offline/m000282p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000282p-f.mnm b/system/ep3/maps-offline/m000282p-f.mnm deleted file mode 100755 index c9bf89aa..00000000 Binary files a/system/ep3/maps-offline/m000282p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000282p-g.mnm b/system/ep3/maps-offline/m000282p-g.mnm deleted file mode 100755 index 7d462487..00000000 Binary files a/system/ep3/maps-offline/m000282p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000282p-j.mnm b/system/ep3/maps-offline/m000282p-j.mnm deleted file mode 100755 index e09c0fa9..00000000 Binary files a/system/ep3/maps-offline/m000282p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000282p-s.mnm b/system/ep3/maps-offline/m000282p-s.mnm deleted file mode 100755 index 633096fa..00000000 Binary files a/system/ep3/maps-offline/m000282p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000291p-e.mnm b/system/ep3/maps-offline/m000291p-e.mnm deleted file mode 100755 index 59cd8747..00000000 Binary files a/system/ep3/maps-offline/m000291p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000291p-f.mnm b/system/ep3/maps-offline/m000291p-f.mnm deleted file mode 100755 index 19773124..00000000 Binary files a/system/ep3/maps-offline/m000291p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000291p-g.mnm b/system/ep3/maps-offline/m000291p-g.mnm deleted file mode 100755 index 758a537a..00000000 Binary files a/system/ep3/maps-offline/m000291p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000291p-j.mnm b/system/ep3/maps-offline/m000291p-j.mnm deleted file mode 100755 index 16bccc0d..00000000 Binary files a/system/ep3/maps-offline/m000291p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000291p-s.mnm b/system/ep3/maps-offline/m000291p-s.mnm deleted file mode 100755 index 71df04d9..00000000 Binary files a/system/ep3/maps-offline/m000291p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000292p-e.mnm b/system/ep3/maps-offline/m000292p-e.mnm deleted file mode 100755 index 6d5cc1db..00000000 Binary files a/system/ep3/maps-offline/m000292p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000292p-f.mnm b/system/ep3/maps-offline/m000292p-f.mnm deleted file mode 100755 index 69ba558f..00000000 Binary files a/system/ep3/maps-offline/m000292p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000292p-g.mnm b/system/ep3/maps-offline/m000292p-g.mnm deleted file mode 100755 index 3021366b..00000000 Binary files a/system/ep3/maps-offline/m000292p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000292p-j.mnm b/system/ep3/maps-offline/m000292p-j.mnm deleted file mode 100755 index 6654d747..00000000 Binary files a/system/ep3/maps-offline/m000292p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000292p-s.mnm b/system/ep3/maps-offline/m000292p-s.mnm deleted file mode 100755 index 6d39b5b9..00000000 Binary files a/system/ep3/maps-offline/m000292p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000293p-e.mnm b/system/ep3/maps-offline/m000293p-e.mnm deleted file mode 100755 index bee94801..00000000 Binary files a/system/ep3/maps-offline/m000293p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000293p-f.mnm b/system/ep3/maps-offline/m000293p-f.mnm deleted file mode 100755 index 8f12292e..00000000 Binary files a/system/ep3/maps-offline/m000293p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000293p-g.mnm b/system/ep3/maps-offline/m000293p-g.mnm deleted file mode 100755 index 4b62796e..00000000 Binary files a/system/ep3/maps-offline/m000293p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000293p-j.mnm b/system/ep3/maps-offline/m000293p-j.mnm deleted file mode 100755 index 46116ae3..00000000 Binary files a/system/ep3/maps-offline/m000293p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000293p-s.mnm b/system/ep3/maps-offline/m000293p-s.mnm deleted file mode 100755 index 8747c3cc..00000000 Binary files a/system/ep3/maps-offline/m000293p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000301p-e.mnm b/system/ep3/maps-offline/m000301p-e.mnm deleted file mode 100755 index 4fd0e3ee..00000000 Binary files a/system/ep3/maps-offline/m000301p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000301p-f.mnm b/system/ep3/maps-offline/m000301p-f.mnm deleted file mode 100755 index 4a8207aa..00000000 Binary files a/system/ep3/maps-offline/m000301p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000301p-g.mnm b/system/ep3/maps-offline/m000301p-g.mnm deleted file mode 100755 index ac60293f..00000000 Binary files a/system/ep3/maps-offline/m000301p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000301p-j.mnm b/system/ep3/maps-offline/m000301p-j.mnm deleted file mode 100755 index 36255f6d..00000000 Binary files a/system/ep3/maps-offline/m000301p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000301p-s.mnm b/system/ep3/maps-offline/m000301p-s.mnm deleted file mode 100755 index 9179b388..00000000 Binary files a/system/ep3/maps-offline/m000301p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000302p-e.mnm b/system/ep3/maps-offline/m000302p-e.mnm deleted file mode 100755 index 1fbdb592..00000000 Binary files a/system/ep3/maps-offline/m000302p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000302p-f.mnm b/system/ep3/maps-offline/m000302p-f.mnm deleted file mode 100755 index 9a42fe73..00000000 Binary files a/system/ep3/maps-offline/m000302p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000302p-g.mnm b/system/ep3/maps-offline/m000302p-g.mnm deleted file mode 100755 index 9b012d50..00000000 Binary files a/system/ep3/maps-offline/m000302p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000302p-j.mnm b/system/ep3/maps-offline/m000302p-j.mnm deleted file mode 100755 index ac148de0..00000000 Binary files a/system/ep3/maps-offline/m000302p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000302p-s.mnm b/system/ep3/maps-offline/m000302p-s.mnm deleted file mode 100755 index fa9d7d82..00000000 Binary files a/system/ep3/maps-offline/m000302p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000303p-e.mnm b/system/ep3/maps-offline/m000303p-e.mnm deleted file mode 100755 index ae050c5b..00000000 Binary files a/system/ep3/maps-offline/m000303p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000303p-f.mnm b/system/ep3/maps-offline/m000303p-f.mnm deleted file mode 100755 index 2bd1b32d..00000000 Binary files a/system/ep3/maps-offline/m000303p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000303p-g.mnm b/system/ep3/maps-offline/m000303p-g.mnm deleted file mode 100755 index b5bafc30..00000000 Binary files a/system/ep3/maps-offline/m000303p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000303p-j.mnm b/system/ep3/maps-offline/m000303p-j.mnm deleted file mode 100755 index e305700f..00000000 Binary files a/system/ep3/maps-offline/m000303p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000303p-s.mnm b/system/ep3/maps-offline/m000303p-s.mnm deleted file mode 100755 index 8801af9e..00000000 Binary files a/system/ep3/maps-offline/m000303p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000311p-e.mnm b/system/ep3/maps-offline/m000311p-e.mnm deleted file mode 100755 index 9ca35f0a..00000000 Binary files a/system/ep3/maps-offline/m000311p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000311p-f.mnm b/system/ep3/maps-offline/m000311p-f.mnm deleted file mode 100755 index f5ddf74f..00000000 Binary files a/system/ep3/maps-offline/m000311p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000311p-g.mnm b/system/ep3/maps-offline/m000311p-g.mnm deleted file mode 100755 index e4148fc2..00000000 Binary files a/system/ep3/maps-offline/m000311p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000311p-j.mnm b/system/ep3/maps-offline/m000311p-j.mnm deleted file mode 100755 index 32795fa9..00000000 Binary files a/system/ep3/maps-offline/m000311p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000311p-s.mnm b/system/ep3/maps-offline/m000311p-s.mnm deleted file mode 100755 index 1eea1fec..00000000 Binary files a/system/ep3/maps-offline/m000311p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000312p-e.mnm b/system/ep3/maps-offline/m000312p-e.mnm deleted file mode 100755 index aa9e5ea6..00000000 Binary files a/system/ep3/maps-offline/m000312p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000312p-f.mnm b/system/ep3/maps-offline/m000312p-f.mnm deleted file mode 100755 index 3d897794..00000000 Binary files a/system/ep3/maps-offline/m000312p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000312p-g.mnm b/system/ep3/maps-offline/m000312p-g.mnm deleted file mode 100755 index 683d275a..00000000 Binary files a/system/ep3/maps-offline/m000312p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000312p-j.mnm b/system/ep3/maps-offline/m000312p-j.mnm deleted file mode 100755 index 51981472..00000000 Binary files a/system/ep3/maps-offline/m000312p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000312p-s.mnm b/system/ep3/maps-offline/m000312p-s.mnm deleted file mode 100755 index 48baa2d5..00000000 Binary files a/system/ep3/maps-offline/m000312p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000313p-e.mnm b/system/ep3/maps-offline/m000313p-e.mnm deleted file mode 100755 index 4d2ff4dc..00000000 Binary files a/system/ep3/maps-offline/m000313p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000313p-f.mnm b/system/ep3/maps-offline/m000313p-f.mnm deleted file mode 100755 index 9e66da84..00000000 Binary files a/system/ep3/maps-offline/m000313p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000313p-g.mnm b/system/ep3/maps-offline/m000313p-g.mnm deleted file mode 100755 index 476d75c4..00000000 Binary files a/system/ep3/maps-offline/m000313p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000313p-j.mnm b/system/ep3/maps-offline/m000313p-j.mnm deleted file mode 100755 index ac9c6d6b..00000000 Binary files a/system/ep3/maps-offline/m000313p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000313p-s.mnm b/system/ep3/maps-offline/m000313p-s.mnm deleted file mode 100755 index 4effe6c0..00000000 Binary files a/system/ep3/maps-offline/m000313p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000321p-e.mnm b/system/ep3/maps-offline/m000321p-e.mnm deleted file mode 100755 index 7c6397fd..00000000 Binary files a/system/ep3/maps-offline/m000321p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000321p-f.mnm b/system/ep3/maps-offline/m000321p-f.mnm deleted file mode 100755 index ff71910f..00000000 Binary files a/system/ep3/maps-offline/m000321p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000321p-g.mnm b/system/ep3/maps-offline/m000321p-g.mnm deleted file mode 100755 index b043079a..00000000 Binary files a/system/ep3/maps-offline/m000321p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000321p-j.mnm b/system/ep3/maps-offline/m000321p-j.mnm deleted file mode 100755 index b78d9048..00000000 Binary files a/system/ep3/maps-offline/m000321p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000321p-s.mnm b/system/ep3/maps-offline/m000321p-s.mnm deleted file mode 100755 index 146388c2..00000000 Binary files a/system/ep3/maps-offline/m000321p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000322p-e.mnm b/system/ep3/maps-offline/m000322p-e.mnm deleted file mode 100755 index c08ffbb4..00000000 Binary files a/system/ep3/maps-offline/m000322p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000322p-f.mnm b/system/ep3/maps-offline/m000322p-f.mnm deleted file mode 100755 index 6caff670..00000000 Binary files a/system/ep3/maps-offline/m000322p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000322p-g.mnm b/system/ep3/maps-offline/m000322p-g.mnm deleted file mode 100755 index b3110b20..00000000 Binary files a/system/ep3/maps-offline/m000322p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000322p-j.mnm b/system/ep3/maps-offline/m000322p-j.mnm deleted file mode 100755 index 456a1acc..00000000 Binary files a/system/ep3/maps-offline/m000322p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000322p-s.mnm b/system/ep3/maps-offline/m000322p-s.mnm deleted file mode 100755 index e10f1ee4..00000000 Binary files a/system/ep3/maps-offline/m000322p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000323p-e.mnm b/system/ep3/maps-offline/m000323p-e.mnm deleted file mode 100755 index b66f5368..00000000 Binary files a/system/ep3/maps-offline/m000323p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000323p-f.mnm b/system/ep3/maps-offline/m000323p-f.mnm deleted file mode 100755 index b083ef8e..00000000 Binary files a/system/ep3/maps-offline/m000323p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000323p-g.mnm b/system/ep3/maps-offline/m000323p-g.mnm deleted file mode 100755 index 0bcac108..00000000 Binary files a/system/ep3/maps-offline/m000323p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000323p-j.mnm b/system/ep3/maps-offline/m000323p-j.mnm deleted file mode 100755 index f5a56035..00000000 Binary files a/system/ep3/maps-offline/m000323p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000323p-s.mnm b/system/ep3/maps-offline/m000323p-s.mnm deleted file mode 100755 index b8cd2bc8..00000000 Binary files a/system/ep3/maps-offline/m000323p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000331p-e.mnm b/system/ep3/maps-offline/m000331p-e.mnm deleted file mode 100755 index 3013272c..00000000 Binary files a/system/ep3/maps-offline/m000331p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000331p-f.mnm b/system/ep3/maps-offline/m000331p-f.mnm deleted file mode 100755 index 10240fe2..00000000 Binary files a/system/ep3/maps-offline/m000331p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000331p-g.mnm b/system/ep3/maps-offline/m000331p-g.mnm deleted file mode 100755 index c85a8756..00000000 Binary files a/system/ep3/maps-offline/m000331p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000331p-j.mnm b/system/ep3/maps-offline/m000331p-j.mnm deleted file mode 100755 index 5f3405b3..00000000 Binary files a/system/ep3/maps-offline/m000331p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000331p-s.mnm b/system/ep3/maps-offline/m000331p-s.mnm deleted file mode 100755 index 39bc4d33..00000000 Binary files a/system/ep3/maps-offline/m000331p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000332p-e.mnm b/system/ep3/maps-offline/m000332p-e.mnm deleted file mode 100755 index 0edf3274..00000000 Binary files a/system/ep3/maps-offline/m000332p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000332p-f.mnm b/system/ep3/maps-offline/m000332p-f.mnm deleted file mode 100755 index 59d27461..00000000 Binary files a/system/ep3/maps-offline/m000332p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000332p-g.mnm b/system/ep3/maps-offline/m000332p-g.mnm deleted file mode 100755 index 729e63c0..00000000 Binary files a/system/ep3/maps-offline/m000332p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000332p-j.mnm b/system/ep3/maps-offline/m000332p-j.mnm deleted file mode 100755 index e9164dd9..00000000 Binary files a/system/ep3/maps-offline/m000332p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000332p-s.mnm b/system/ep3/maps-offline/m000332p-s.mnm deleted file mode 100755 index 654ac6e0..00000000 Binary files a/system/ep3/maps-offline/m000332p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000333p-e.mnm b/system/ep3/maps-offline/m000333p-e.mnm deleted file mode 100755 index b204ba79..00000000 Binary files a/system/ep3/maps-offline/m000333p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000333p-f.mnm b/system/ep3/maps-offline/m000333p-f.mnm deleted file mode 100755 index 5102bb0a..00000000 Binary files a/system/ep3/maps-offline/m000333p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000333p-g.mnm b/system/ep3/maps-offline/m000333p-g.mnm deleted file mode 100755 index 3ff9be45..00000000 Binary files a/system/ep3/maps-offline/m000333p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000333p-j.mnm b/system/ep3/maps-offline/m000333p-j.mnm deleted file mode 100755 index e50918db..00000000 Binary files a/system/ep3/maps-offline/m000333p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000333p-s.mnm b/system/ep3/maps-offline/m000333p-s.mnm deleted file mode 100755 index 3fcf7e93..00000000 Binary files a/system/ep3/maps-offline/m000333p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000341p-e.mnm b/system/ep3/maps-offline/m000341p-e.mnm deleted file mode 100755 index 7e93f32a..00000000 Binary files a/system/ep3/maps-offline/m000341p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000341p-f.mnm b/system/ep3/maps-offline/m000341p-f.mnm deleted file mode 100755 index e478a50a..00000000 Binary files a/system/ep3/maps-offline/m000341p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000341p-g.mnm b/system/ep3/maps-offline/m000341p-g.mnm deleted file mode 100755 index d11ff29a..00000000 Binary files a/system/ep3/maps-offline/m000341p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000341p-j.mnm b/system/ep3/maps-offline/m000341p-j.mnm deleted file mode 100755 index d035473d..00000000 Binary files a/system/ep3/maps-offline/m000341p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000341p-s.mnm b/system/ep3/maps-offline/m000341p-s.mnm deleted file mode 100755 index fdc0addf..00000000 Binary files a/system/ep3/maps-offline/m000341p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000342p-e.mnm b/system/ep3/maps-offline/m000342p-e.mnm deleted file mode 100755 index d5b8d158..00000000 Binary files a/system/ep3/maps-offline/m000342p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000342p-f.mnm b/system/ep3/maps-offline/m000342p-f.mnm deleted file mode 100755 index a19f29b8..00000000 Binary files a/system/ep3/maps-offline/m000342p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000342p-g.mnm b/system/ep3/maps-offline/m000342p-g.mnm deleted file mode 100755 index 44908518..00000000 Binary files a/system/ep3/maps-offline/m000342p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000342p-j.mnm b/system/ep3/maps-offline/m000342p-j.mnm deleted file mode 100755 index c89c9686..00000000 Binary files a/system/ep3/maps-offline/m000342p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000342p-s.mnm b/system/ep3/maps-offline/m000342p-s.mnm deleted file mode 100755 index ae010807..00000000 Binary files a/system/ep3/maps-offline/m000342p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000343p-e.mnm b/system/ep3/maps-offline/m000343p-e.mnm deleted file mode 100755 index 619b724c..00000000 Binary files a/system/ep3/maps-offline/m000343p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000343p-f.mnm b/system/ep3/maps-offline/m000343p-f.mnm deleted file mode 100755 index f071ae6b..00000000 Binary files a/system/ep3/maps-offline/m000343p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000343p-g.mnm b/system/ep3/maps-offline/m000343p-g.mnm deleted file mode 100755 index 538ecc45..00000000 Binary files a/system/ep3/maps-offline/m000343p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000343p-j.mnm b/system/ep3/maps-offline/m000343p-j.mnm deleted file mode 100755 index be7a425b..00000000 Binary files a/system/ep3/maps-offline/m000343p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000343p-s.mnm b/system/ep3/maps-offline/m000343p-s.mnm deleted file mode 100755 index fb992cc7..00000000 Binary files a/system/ep3/maps-offline/m000343p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000351p-e.mnm b/system/ep3/maps-offline/m000351p-e.mnm deleted file mode 100755 index 4b202e79..00000000 Binary files a/system/ep3/maps-offline/m000351p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000351p-f.mnm b/system/ep3/maps-offline/m000351p-f.mnm deleted file mode 100755 index b55fad20..00000000 Binary files a/system/ep3/maps-offline/m000351p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000351p-g.mnm b/system/ep3/maps-offline/m000351p-g.mnm deleted file mode 100755 index bf83b116..00000000 Binary files a/system/ep3/maps-offline/m000351p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000351p-j.mnm b/system/ep3/maps-offline/m000351p-j.mnm deleted file mode 100755 index 291c114d..00000000 Binary files a/system/ep3/maps-offline/m000351p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000351p-s.mnm b/system/ep3/maps-offline/m000351p-s.mnm deleted file mode 100755 index d31d08d5..00000000 Binary files a/system/ep3/maps-offline/m000351p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000352p-e.mnm b/system/ep3/maps-offline/m000352p-e.mnm deleted file mode 100755 index a501fd53..00000000 Binary files a/system/ep3/maps-offline/m000352p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000352p-f.mnm b/system/ep3/maps-offline/m000352p-f.mnm deleted file mode 100755 index ae729740..00000000 Binary files a/system/ep3/maps-offline/m000352p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000352p-g.mnm b/system/ep3/maps-offline/m000352p-g.mnm deleted file mode 100755 index fa052927..00000000 Binary files a/system/ep3/maps-offline/m000352p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000352p-j.mnm b/system/ep3/maps-offline/m000352p-j.mnm deleted file mode 100755 index 0f94327c..00000000 Binary files a/system/ep3/maps-offline/m000352p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000352p-s.mnm b/system/ep3/maps-offline/m000352p-s.mnm deleted file mode 100755 index c3e76f6d..00000000 Binary files a/system/ep3/maps-offline/m000352p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000353p-e.mnm b/system/ep3/maps-offline/m000353p-e.mnm deleted file mode 100755 index 0cc14e0d..00000000 Binary files a/system/ep3/maps-offline/m000353p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000353p-f.mnm b/system/ep3/maps-offline/m000353p-f.mnm deleted file mode 100755 index f4896440..00000000 Binary files a/system/ep3/maps-offline/m000353p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000353p-g.mnm b/system/ep3/maps-offline/m000353p-g.mnm deleted file mode 100755 index a40102db..00000000 Binary files a/system/ep3/maps-offline/m000353p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000353p-j.mnm b/system/ep3/maps-offline/m000353p-j.mnm deleted file mode 100755 index def77c93..00000000 Binary files a/system/ep3/maps-offline/m000353p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000353p-s.mnm b/system/ep3/maps-offline/m000353p-s.mnm deleted file mode 100755 index 935b9b8f..00000000 Binary files a/system/ep3/maps-offline/m000353p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000361p-e.mnm b/system/ep3/maps-offline/m000361p-e.mnm deleted file mode 100755 index 89b424a6..00000000 Binary files a/system/ep3/maps-offline/m000361p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000361p-f.mnm b/system/ep3/maps-offline/m000361p-f.mnm deleted file mode 100755 index 8a1043d6..00000000 Binary files a/system/ep3/maps-offline/m000361p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000361p-g.mnm b/system/ep3/maps-offline/m000361p-g.mnm deleted file mode 100755 index 20a1b9ff..00000000 Binary files a/system/ep3/maps-offline/m000361p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000361p-j.mnm b/system/ep3/maps-offline/m000361p-j.mnm deleted file mode 100755 index 5955cf8b..00000000 Binary files a/system/ep3/maps-offline/m000361p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000361p-s.mnm b/system/ep3/maps-offline/m000361p-s.mnm deleted file mode 100755 index 0fa23f8d..00000000 Binary files a/system/ep3/maps-offline/m000361p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000362p-e.mnm b/system/ep3/maps-offline/m000362p-e.mnm deleted file mode 100755 index 96f09ad0..00000000 Binary files a/system/ep3/maps-offline/m000362p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000362p-f.mnm b/system/ep3/maps-offline/m000362p-f.mnm deleted file mode 100755 index a5c89557..00000000 Binary files a/system/ep3/maps-offline/m000362p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000362p-g.mnm b/system/ep3/maps-offline/m000362p-g.mnm deleted file mode 100755 index f52438be..00000000 Binary files a/system/ep3/maps-offline/m000362p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000362p-j.mnm b/system/ep3/maps-offline/m000362p-j.mnm deleted file mode 100755 index be3c4294..00000000 Binary files a/system/ep3/maps-offline/m000362p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000362p-s.mnm b/system/ep3/maps-offline/m000362p-s.mnm deleted file mode 100755 index 835e3d2f..00000000 Binary files a/system/ep3/maps-offline/m000362p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000363p-e.mnm b/system/ep3/maps-offline/m000363p-e.mnm deleted file mode 100755 index b679b1ee..00000000 Binary files a/system/ep3/maps-offline/m000363p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000363p-f.mnm b/system/ep3/maps-offline/m000363p-f.mnm deleted file mode 100755 index 220a7caf..00000000 Binary files a/system/ep3/maps-offline/m000363p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000363p-g.mnm b/system/ep3/maps-offline/m000363p-g.mnm deleted file mode 100755 index 6a93ff88..00000000 Binary files a/system/ep3/maps-offline/m000363p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000363p-j.mnm b/system/ep3/maps-offline/m000363p-j.mnm deleted file mode 100755 index dc77e2f5..00000000 Binary files a/system/ep3/maps-offline/m000363p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000363p-s.mnm b/system/ep3/maps-offline/m000363p-s.mnm deleted file mode 100755 index 30ef33f9..00000000 Binary files a/system/ep3/maps-offline/m000363p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000371p-e.mnm b/system/ep3/maps-offline/m000371p-e.mnm deleted file mode 100755 index 82452c85..00000000 Binary files a/system/ep3/maps-offline/m000371p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000371p-f.mnm b/system/ep3/maps-offline/m000371p-f.mnm deleted file mode 100755 index 8e9b4c63..00000000 Binary files a/system/ep3/maps-offline/m000371p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000371p-g.mnm b/system/ep3/maps-offline/m000371p-g.mnm deleted file mode 100755 index 7293b959..00000000 Binary files a/system/ep3/maps-offline/m000371p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000371p-j.mnm b/system/ep3/maps-offline/m000371p-j.mnm deleted file mode 100755 index 87406262..00000000 Binary files a/system/ep3/maps-offline/m000371p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000371p-s.mnm b/system/ep3/maps-offline/m000371p-s.mnm deleted file mode 100755 index bda0eb9d..00000000 Binary files a/system/ep3/maps-offline/m000371p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000372p-e.mnm b/system/ep3/maps-offline/m000372p-e.mnm deleted file mode 100755 index 5c1974ee..00000000 Binary files a/system/ep3/maps-offline/m000372p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000372p-f.mnm b/system/ep3/maps-offline/m000372p-f.mnm deleted file mode 100755 index 06410859..00000000 Binary files a/system/ep3/maps-offline/m000372p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000372p-g.mnm b/system/ep3/maps-offline/m000372p-g.mnm deleted file mode 100755 index 4e42c2b6..00000000 Binary files a/system/ep3/maps-offline/m000372p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000372p-j.mnm b/system/ep3/maps-offline/m000372p-j.mnm deleted file mode 100755 index bdbefd81..00000000 Binary files a/system/ep3/maps-offline/m000372p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000372p-s.mnm b/system/ep3/maps-offline/m000372p-s.mnm deleted file mode 100755 index d8217cc6..00000000 Binary files a/system/ep3/maps-offline/m000372p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000373p-e.mnm b/system/ep3/maps-offline/m000373p-e.mnm deleted file mode 100755 index f716a92f..00000000 Binary files a/system/ep3/maps-offline/m000373p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000373p-f.mnm b/system/ep3/maps-offline/m000373p-f.mnm deleted file mode 100755 index c5c1bb0d..00000000 Binary files a/system/ep3/maps-offline/m000373p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000373p-g.mnm b/system/ep3/maps-offline/m000373p-g.mnm deleted file mode 100755 index aec94731..00000000 Binary files a/system/ep3/maps-offline/m000373p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000373p-j.mnm b/system/ep3/maps-offline/m000373p-j.mnm deleted file mode 100755 index 2b173bc8..00000000 Binary files a/system/ep3/maps-offline/m000373p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000373p-s.mnm b/system/ep3/maps-offline/m000373p-s.mnm deleted file mode 100755 index b95c7ebf..00000000 Binary files a/system/ep3/maps-offline/m000373p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000381p-e.mnm b/system/ep3/maps-offline/m000381p-e.mnm deleted file mode 100755 index 76efcf34..00000000 Binary files a/system/ep3/maps-offline/m000381p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000381p-f.mnm b/system/ep3/maps-offline/m000381p-f.mnm deleted file mode 100755 index 1ef72fb3..00000000 Binary files a/system/ep3/maps-offline/m000381p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000381p-g.mnm b/system/ep3/maps-offline/m000381p-g.mnm deleted file mode 100755 index 0db95d1f..00000000 Binary files a/system/ep3/maps-offline/m000381p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000381p-j.mnm b/system/ep3/maps-offline/m000381p-j.mnm deleted file mode 100755 index b17a0d81..00000000 Binary files a/system/ep3/maps-offline/m000381p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000381p-s.mnm b/system/ep3/maps-offline/m000381p-s.mnm deleted file mode 100755 index efd7c264..00000000 Binary files a/system/ep3/maps-offline/m000381p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000391p-e.mnm b/system/ep3/maps-offline/m000391p-e.mnm deleted file mode 100755 index 492834b2..00000000 Binary files a/system/ep3/maps-offline/m000391p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000391p-f.mnm b/system/ep3/maps-offline/m000391p-f.mnm deleted file mode 100755 index 7de2f89b..00000000 Binary files a/system/ep3/maps-offline/m000391p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000391p-g.mnm b/system/ep3/maps-offline/m000391p-g.mnm deleted file mode 100755 index b285ad44..00000000 Binary files a/system/ep3/maps-offline/m000391p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000391p-j.mnm b/system/ep3/maps-offline/m000391p-j.mnm deleted file mode 100755 index 778d9c75..00000000 Binary files a/system/ep3/maps-offline/m000391p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000391p-s.mnm b/system/ep3/maps-offline/m000391p-s.mnm deleted file mode 100755 index 7c2c8083..00000000 Binary files a/system/ep3/maps-offline/m000391p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000392p-e.mnm b/system/ep3/maps-offline/m000392p-e.mnm deleted file mode 100755 index 0b755053..00000000 Binary files a/system/ep3/maps-offline/m000392p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000392p-f.mnm b/system/ep3/maps-offline/m000392p-f.mnm deleted file mode 100755 index 3aeac2bd..00000000 Binary files a/system/ep3/maps-offline/m000392p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000392p-g.mnm b/system/ep3/maps-offline/m000392p-g.mnm deleted file mode 100755 index ec18b2e1..00000000 Binary files a/system/ep3/maps-offline/m000392p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000392p-j.mnm b/system/ep3/maps-offline/m000392p-j.mnm deleted file mode 100755 index 2e4ea162..00000000 Binary files a/system/ep3/maps-offline/m000392p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000392p-s.mnm b/system/ep3/maps-offline/m000392p-s.mnm deleted file mode 100755 index 115d747c..00000000 Binary files a/system/ep3/maps-offline/m000392p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000393p-e.mnm b/system/ep3/maps-offline/m000393p-e.mnm deleted file mode 100755 index e9455418..00000000 Binary files a/system/ep3/maps-offline/m000393p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000393p-f.mnm b/system/ep3/maps-offline/m000393p-f.mnm deleted file mode 100755 index 3a07401e..00000000 Binary files a/system/ep3/maps-offline/m000393p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000393p-g.mnm b/system/ep3/maps-offline/m000393p-g.mnm deleted file mode 100755 index 410dae1f..00000000 Binary files a/system/ep3/maps-offline/m000393p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000393p-j.mnm b/system/ep3/maps-offline/m000393p-j.mnm deleted file mode 100755 index e2380d25..00000000 Binary files a/system/ep3/maps-offline/m000393p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000393p-s.mnm b/system/ep3/maps-offline/m000393p-s.mnm deleted file mode 100755 index 286f2656..00000000 Binary files a/system/ep3/maps-offline/m000393p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000401p-e.mnm b/system/ep3/maps-offline/m000401p-e.mnm deleted file mode 100755 index 9295175e..00000000 Binary files a/system/ep3/maps-offline/m000401p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000401p-f.mnm b/system/ep3/maps-offline/m000401p-f.mnm deleted file mode 100755 index dfed6f93..00000000 Binary files a/system/ep3/maps-offline/m000401p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000401p-g.mnm b/system/ep3/maps-offline/m000401p-g.mnm deleted file mode 100755 index 2e2330c7..00000000 Binary files a/system/ep3/maps-offline/m000401p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000401p-j.mnm b/system/ep3/maps-offline/m000401p-j.mnm deleted file mode 100755 index f003d1d3..00000000 Binary files a/system/ep3/maps-offline/m000401p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000401p-s.mnm b/system/ep3/maps-offline/m000401p-s.mnm deleted file mode 100755 index 6ad9e5de..00000000 Binary files a/system/ep3/maps-offline/m000401p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000402p-e.mnm b/system/ep3/maps-offline/m000402p-e.mnm deleted file mode 100755 index af070cc5..00000000 Binary files a/system/ep3/maps-offline/m000402p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000402p-f.mnm b/system/ep3/maps-offline/m000402p-f.mnm deleted file mode 100755 index a91c9e00..00000000 Binary files a/system/ep3/maps-offline/m000402p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000402p-g.mnm b/system/ep3/maps-offline/m000402p-g.mnm deleted file mode 100755 index a1271377..00000000 Binary files a/system/ep3/maps-offline/m000402p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000402p-j.mnm b/system/ep3/maps-offline/m000402p-j.mnm deleted file mode 100755 index e11ad5ea..00000000 Binary files a/system/ep3/maps-offline/m000402p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000402p-s.mnm b/system/ep3/maps-offline/m000402p-s.mnm deleted file mode 100755 index 92942ab4..00000000 Binary files a/system/ep3/maps-offline/m000402p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000403p-e.mnm b/system/ep3/maps-offline/m000403p-e.mnm deleted file mode 100755 index cb75e434..00000000 Binary files a/system/ep3/maps-offline/m000403p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000403p-f.mnm b/system/ep3/maps-offline/m000403p-f.mnm deleted file mode 100755 index dd99aea5..00000000 Binary files a/system/ep3/maps-offline/m000403p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000403p-g.mnm b/system/ep3/maps-offline/m000403p-g.mnm deleted file mode 100755 index 3a8005cb..00000000 Binary files a/system/ep3/maps-offline/m000403p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000403p-j.mnm b/system/ep3/maps-offline/m000403p-j.mnm deleted file mode 100755 index 3c16d62c..00000000 Binary files a/system/ep3/maps-offline/m000403p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000403p-s.mnm b/system/ep3/maps-offline/m000403p-s.mnm deleted file mode 100755 index 0965f807..00000000 Binary files a/system/ep3/maps-offline/m000403p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000411p-e.mnm b/system/ep3/maps-offline/m000411p-e.mnm deleted file mode 100755 index b37b460d..00000000 Binary files a/system/ep3/maps-offline/m000411p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000411p-f.mnm b/system/ep3/maps-offline/m000411p-f.mnm deleted file mode 100755 index e08b8de7..00000000 Binary files a/system/ep3/maps-offline/m000411p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000411p-g.mnm b/system/ep3/maps-offline/m000411p-g.mnm deleted file mode 100755 index 149b16e4..00000000 Binary files a/system/ep3/maps-offline/m000411p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000411p-j.mnm b/system/ep3/maps-offline/m000411p-j.mnm deleted file mode 100755 index b7ee67f1..00000000 Binary files a/system/ep3/maps-offline/m000411p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000411p-s.mnm b/system/ep3/maps-offline/m000411p-s.mnm deleted file mode 100755 index 2a933d41..00000000 Binary files a/system/ep3/maps-offline/m000411p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000412p-e.mnm b/system/ep3/maps-offline/m000412p-e.mnm deleted file mode 100755 index 77a6117b..00000000 Binary files a/system/ep3/maps-offline/m000412p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000412p-f.mnm b/system/ep3/maps-offline/m000412p-f.mnm deleted file mode 100755 index e659fa1c..00000000 Binary files a/system/ep3/maps-offline/m000412p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000412p-g.mnm b/system/ep3/maps-offline/m000412p-g.mnm deleted file mode 100755 index 7315bad6..00000000 Binary files a/system/ep3/maps-offline/m000412p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000412p-j.mnm b/system/ep3/maps-offline/m000412p-j.mnm deleted file mode 100755 index 0588b5ad..00000000 Binary files a/system/ep3/maps-offline/m000412p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000412p-s.mnm b/system/ep3/maps-offline/m000412p-s.mnm deleted file mode 100755 index c2ad68b6..00000000 Binary files a/system/ep3/maps-offline/m000412p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000413p-e.mnm b/system/ep3/maps-offline/m000413p-e.mnm deleted file mode 100755 index e30eed6c..00000000 Binary files a/system/ep3/maps-offline/m000413p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000413p-f.mnm b/system/ep3/maps-offline/m000413p-f.mnm deleted file mode 100755 index a2f6f911..00000000 Binary files a/system/ep3/maps-offline/m000413p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000413p-g.mnm b/system/ep3/maps-offline/m000413p-g.mnm deleted file mode 100755 index 9ad5f335..00000000 Binary files a/system/ep3/maps-offline/m000413p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000413p-j.mnm b/system/ep3/maps-offline/m000413p-j.mnm deleted file mode 100755 index 61547587..00000000 Binary files a/system/ep3/maps-offline/m000413p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000413p-s.mnm b/system/ep3/maps-offline/m000413p-s.mnm deleted file mode 100755 index cc0c0a68..00000000 Binary files a/system/ep3/maps-offline/m000413p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000421p-e.mnm b/system/ep3/maps-offline/m000421p-e.mnm deleted file mode 100755 index f423a05d..00000000 Binary files a/system/ep3/maps-offline/m000421p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000421p-f.mnm b/system/ep3/maps-offline/m000421p-f.mnm deleted file mode 100755 index 1cb97569..00000000 Binary files a/system/ep3/maps-offline/m000421p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000421p-g.mnm b/system/ep3/maps-offline/m000421p-g.mnm deleted file mode 100755 index e715d2ac..00000000 Binary files a/system/ep3/maps-offline/m000421p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000421p-j.mnm b/system/ep3/maps-offline/m000421p-j.mnm deleted file mode 100755 index dd228ab1..00000000 Binary files a/system/ep3/maps-offline/m000421p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000421p-s.mnm b/system/ep3/maps-offline/m000421p-s.mnm deleted file mode 100755 index 313bfa3d..00000000 Binary files a/system/ep3/maps-offline/m000421p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000422p-e.mnm b/system/ep3/maps-offline/m000422p-e.mnm deleted file mode 100755 index 25eeb09d..00000000 Binary files a/system/ep3/maps-offline/m000422p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000422p-f.mnm b/system/ep3/maps-offline/m000422p-f.mnm deleted file mode 100755 index d18a95fd..00000000 Binary files a/system/ep3/maps-offline/m000422p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000422p-g.mnm b/system/ep3/maps-offline/m000422p-g.mnm deleted file mode 100755 index 3927136f..00000000 Binary files a/system/ep3/maps-offline/m000422p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000422p-j.mnm b/system/ep3/maps-offline/m000422p-j.mnm deleted file mode 100755 index 6e2cb0c5..00000000 Binary files a/system/ep3/maps-offline/m000422p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000422p-s.mnm b/system/ep3/maps-offline/m000422p-s.mnm deleted file mode 100755 index 61013c61..00000000 Binary files a/system/ep3/maps-offline/m000422p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000423p-e.mnm b/system/ep3/maps-offline/m000423p-e.mnm deleted file mode 100755 index c7802a5b..00000000 Binary files a/system/ep3/maps-offline/m000423p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000423p-f.mnm b/system/ep3/maps-offline/m000423p-f.mnm deleted file mode 100755 index 8c319986..00000000 Binary files a/system/ep3/maps-offline/m000423p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000423p-g.mnm b/system/ep3/maps-offline/m000423p-g.mnm deleted file mode 100755 index bef077da..00000000 Binary files a/system/ep3/maps-offline/m000423p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000423p-j.mnm b/system/ep3/maps-offline/m000423p-j.mnm deleted file mode 100755 index f47dacfc..00000000 Binary files a/system/ep3/maps-offline/m000423p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000423p-s.mnm b/system/ep3/maps-offline/m000423p-s.mnm deleted file mode 100755 index 8f85acbc..00000000 Binary files a/system/ep3/maps-offline/m000423p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000431p-e.mnm b/system/ep3/maps-offline/m000431p-e.mnm deleted file mode 100755 index 1d2720f1..00000000 Binary files a/system/ep3/maps-offline/m000431p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000431p-f.mnm b/system/ep3/maps-offline/m000431p-f.mnm deleted file mode 100755 index 40165abb..00000000 Binary files a/system/ep3/maps-offline/m000431p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000431p-g.mnm b/system/ep3/maps-offline/m000431p-g.mnm deleted file mode 100755 index 4d2ff256..00000000 Binary files a/system/ep3/maps-offline/m000431p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000431p-j.mnm b/system/ep3/maps-offline/m000431p-j.mnm deleted file mode 100755 index 5587aaa2..00000000 Binary files a/system/ep3/maps-offline/m000431p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000431p-s.mnm b/system/ep3/maps-offline/m000431p-s.mnm deleted file mode 100755 index ff98b789..00000000 Binary files a/system/ep3/maps-offline/m000431p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000432p-e.mnm b/system/ep3/maps-offline/m000432p-e.mnm deleted file mode 100755 index 6c22e572..00000000 Binary files a/system/ep3/maps-offline/m000432p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000432p-f.mnm b/system/ep3/maps-offline/m000432p-f.mnm deleted file mode 100755 index d5dccf8b..00000000 Binary files a/system/ep3/maps-offline/m000432p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000432p-g.mnm b/system/ep3/maps-offline/m000432p-g.mnm deleted file mode 100755 index b98ba91d..00000000 Binary files a/system/ep3/maps-offline/m000432p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000432p-j.mnm b/system/ep3/maps-offline/m000432p-j.mnm deleted file mode 100755 index afaa148d..00000000 Binary files a/system/ep3/maps-offline/m000432p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000432p-s.mnm b/system/ep3/maps-offline/m000432p-s.mnm deleted file mode 100755 index 848fcaee..00000000 Binary files a/system/ep3/maps-offline/m000432p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000433p-e.mnm b/system/ep3/maps-offline/m000433p-e.mnm deleted file mode 100755 index 56bd9624..00000000 Binary files a/system/ep3/maps-offline/m000433p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000433p-f.mnm b/system/ep3/maps-offline/m000433p-f.mnm deleted file mode 100755 index a7fffb1b..00000000 Binary files a/system/ep3/maps-offline/m000433p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000433p-g.mnm b/system/ep3/maps-offline/m000433p-g.mnm deleted file mode 100755 index 442ad570..00000000 Binary files a/system/ep3/maps-offline/m000433p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000433p-j.mnm b/system/ep3/maps-offline/m000433p-j.mnm deleted file mode 100755 index ab0afa10..00000000 Binary files a/system/ep3/maps-offline/m000433p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000433p-s.mnm b/system/ep3/maps-offline/m000433p-s.mnm deleted file mode 100755 index 92f617fc..00000000 Binary files a/system/ep3/maps-offline/m000433p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000441p-e.mnm b/system/ep3/maps-offline/m000441p-e.mnm deleted file mode 100755 index f319240c..00000000 Binary files a/system/ep3/maps-offline/m000441p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000441p-f.mnm b/system/ep3/maps-offline/m000441p-f.mnm deleted file mode 100755 index 3adccf78..00000000 Binary files a/system/ep3/maps-offline/m000441p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000441p-g.mnm b/system/ep3/maps-offline/m000441p-g.mnm deleted file mode 100755 index 9aec9370..00000000 Binary files a/system/ep3/maps-offline/m000441p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000441p-j.mnm b/system/ep3/maps-offline/m000441p-j.mnm deleted file mode 100755 index 538342b5..00000000 Binary files a/system/ep3/maps-offline/m000441p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000441p-s.mnm b/system/ep3/maps-offline/m000441p-s.mnm deleted file mode 100755 index f1facc9b..00000000 Binary files a/system/ep3/maps-offline/m000441p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000442p-e.mnm b/system/ep3/maps-offline/m000442p-e.mnm deleted file mode 100755 index 92fe6e57..00000000 Binary files a/system/ep3/maps-offline/m000442p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000442p-f.mnm b/system/ep3/maps-offline/m000442p-f.mnm deleted file mode 100755 index 794d79c6..00000000 Binary files a/system/ep3/maps-offline/m000442p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000442p-g.mnm b/system/ep3/maps-offline/m000442p-g.mnm deleted file mode 100755 index 929f9b49..00000000 Binary files a/system/ep3/maps-offline/m000442p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000442p-j.mnm b/system/ep3/maps-offline/m000442p-j.mnm deleted file mode 100755 index db79d6d7..00000000 Binary files a/system/ep3/maps-offline/m000442p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000442p-s.mnm b/system/ep3/maps-offline/m000442p-s.mnm deleted file mode 100755 index 25fb30bc..00000000 Binary files a/system/ep3/maps-offline/m000442p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000443p-e.mnm b/system/ep3/maps-offline/m000443p-e.mnm deleted file mode 100755 index e1117bcb..00000000 Binary files a/system/ep3/maps-offline/m000443p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000443p-f.mnm b/system/ep3/maps-offline/m000443p-f.mnm deleted file mode 100755 index 52d760b7..00000000 Binary files a/system/ep3/maps-offline/m000443p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000443p-g.mnm b/system/ep3/maps-offline/m000443p-g.mnm deleted file mode 100755 index de062db5..00000000 Binary files a/system/ep3/maps-offline/m000443p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000443p-j.mnm b/system/ep3/maps-offline/m000443p-j.mnm deleted file mode 100755 index 1fe6ea68..00000000 Binary files a/system/ep3/maps-offline/m000443p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000443p-s.mnm b/system/ep3/maps-offline/m000443p-s.mnm deleted file mode 100755 index d063a729..00000000 Binary files a/system/ep3/maps-offline/m000443p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000451p-e.mnm b/system/ep3/maps-offline/m000451p-e.mnm deleted file mode 100755 index dd01a5c7..00000000 Binary files a/system/ep3/maps-offline/m000451p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000451p-f.mnm b/system/ep3/maps-offline/m000451p-f.mnm deleted file mode 100755 index d46a45d5..00000000 Binary files a/system/ep3/maps-offline/m000451p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000451p-g.mnm b/system/ep3/maps-offline/m000451p-g.mnm deleted file mode 100755 index 24bedfe0..00000000 Binary files a/system/ep3/maps-offline/m000451p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000451p-j.mnm b/system/ep3/maps-offline/m000451p-j.mnm deleted file mode 100755 index 94086b25..00000000 Binary files a/system/ep3/maps-offline/m000451p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000451p-s.mnm b/system/ep3/maps-offline/m000451p-s.mnm deleted file mode 100755 index 4d5ca8d6..00000000 Binary files a/system/ep3/maps-offline/m000451p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000452p-e.mnm b/system/ep3/maps-offline/m000452p-e.mnm deleted file mode 100755 index 3fdb7696..00000000 Binary files a/system/ep3/maps-offline/m000452p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000452p-f.mnm b/system/ep3/maps-offline/m000452p-f.mnm deleted file mode 100755 index 29809f39..00000000 Binary files a/system/ep3/maps-offline/m000452p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000452p-g.mnm b/system/ep3/maps-offline/m000452p-g.mnm deleted file mode 100755 index 6d624a22..00000000 Binary files a/system/ep3/maps-offline/m000452p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000452p-j.mnm b/system/ep3/maps-offline/m000452p-j.mnm deleted file mode 100755 index f377d718..00000000 Binary files a/system/ep3/maps-offline/m000452p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000452p-s.mnm b/system/ep3/maps-offline/m000452p-s.mnm deleted file mode 100755 index 0fedc059..00000000 Binary files a/system/ep3/maps-offline/m000452p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000453p-e.mnm b/system/ep3/maps-offline/m000453p-e.mnm deleted file mode 100755 index e57f65d9..00000000 Binary files a/system/ep3/maps-offline/m000453p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000453p-f.mnm b/system/ep3/maps-offline/m000453p-f.mnm deleted file mode 100755 index 5ee8291e..00000000 Binary files a/system/ep3/maps-offline/m000453p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000453p-g.mnm b/system/ep3/maps-offline/m000453p-g.mnm deleted file mode 100755 index fa42a5e4..00000000 Binary files a/system/ep3/maps-offline/m000453p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000453p-j.mnm b/system/ep3/maps-offline/m000453p-j.mnm deleted file mode 100755 index b859841e..00000000 Binary files a/system/ep3/maps-offline/m000453p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000453p-s.mnm b/system/ep3/maps-offline/m000453p-s.mnm deleted file mode 100755 index 4eb7bf02..00000000 Binary files a/system/ep3/maps-offline/m000453p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000461p-e.mnm b/system/ep3/maps-offline/m000461p-e.mnm deleted file mode 100755 index 0e77b55d..00000000 Binary files a/system/ep3/maps-offline/m000461p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000461p-f.mnm b/system/ep3/maps-offline/m000461p-f.mnm deleted file mode 100755 index 4702bbad..00000000 Binary files a/system/ep3/maps-offline/m000461p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000461p-g.mnm b/system/ep3/maps-offline/m000461p-g.mnm deleted file mode 100755 index 1b00f91f..00000000 Binary files a/system/ep3/maps-offline/m000461p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000461p-j.mnm b/system/ep3/maps-offline/m000461p-j.mnm deleted file mode 100755 index 7f32ae72..00000000 Binary files a/system/ep3/maps-offline/m000461p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000461p-s.mnm b/system/ep3/maps-offline/m000461p-s.mnm deleted file mode 100755 index ee2b14f2..00000000 Binary files a/system/ep3/maps-offline/m000461p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000471p-e.mnm b/system/ep3/maps-offline/m000471p-e.mnm deleted file mode 100755 index 0ee2e8ce..00000000 Binary files a/system/ep3/maps-offline/m000471p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000471p-f.mnm b/system/ep3/maps-offline/m000471p-f.mnm deleted file mode 100755 index b5863ce9..00000000 Binary files a/system/ep3/maps-offline/m000471p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000471p-g.mnm b/system/ep3/maps-offline/m000471p-g.mnm deleted file mode 100755 index 35cc0700..00000000 Binary files a/system/ep3/maps-offline/m000471p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000471p-j.mnm b/system/ep3/maps-offline/m000471p-j.mnm deleted file mode 100755 index ef4db87e..00000000 Binary files a/system/ep3/maps-offline/m000471p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000471p-s.mnm b/system/ep3/maps-offline/m000471p-s.mnm deleted file mode 100755 index ed059bb7..00000000 Binary files a/system/ep3/maps-offline/m000471p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000472p-e.mnm b/system/ep3/maps-offline/m000472p-e.mnm deleted file mode 100755 index 7861e558..00000000 Binary files a/system/ep3/maps-offline/m000472p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000472p-f.mnm b/system/ep3/maps-offline/m000472p-f.mnm deleted file mode 100755 index b6f980c8..00000000 Binary files a/system/ep3/maps-offline/m000472p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000472p-g.mnm b/system/ep3/maps-offline/m000472p-g.mnm deleted file mode 100755 index 8232c269..00000000 Binary files a/system/ep3/maps-offline/m000472p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000472p-j.mnm b/system/ep3/maps-offline/m000472p-j.mnm deleted file mode 100755 index 31d19c0a..00000000 Binary files a/system/ep3/maps-offline/m000472p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000472p-s.mnm b/system/ep3/maps-offline/m000472p-s.mnm deleted file mode 100755 index 0373c39b..00000000 Binary files a/system/ep3/maps-offline/m000472p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000473p-e.mnm b/system/ep3/maps-offline/m000473p-e.mnm deleted file mode 100755 index 790c6b21..00000000 Binary files a/system/ep3/maps-offline/m000473p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000473p-f.mnm b/system/ep3/maps-offline/m000473p-f.mnm deleted file mode 100755 index 790c6b21..00000000 Binary files a/system/ep3/maps-offline/m000473p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000473p-g.mnm b/system/ep3/maps-offline/m000473p-g.mnm deleted file mode 100755 index 790c6b21..00000000 Binary files a/system/ep3/maps-offline/m000473p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000473p-j.mnm b/system/ep3/maps-offline/m000473p-j.mnm deleted file mode 100755 index 176310db..00000000 Binary files a/system/ep3/maps-offline/m000473p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000473p-s.mnm b/system/ep3/maps-offline/m000473p-s.mnm deleted file mode 100755 index 790c6b21..00000000 Binary files a/system/ep3/maps-offline/m000473p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000501p-e.mnm b/system/ep3/maps-offline/m000501p-e.mnm deleted file mode 100755 index 7089da14..00000000 Binary files a/system/ep3/maps-offline/m000501p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000501p-f.mnm b/system/ep3/maps-offline/m000501p-f.mnm deleted file mode 100755 index 2dd37c24..00000000 Binary files a/system/ep3/maps-offline/m000501p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000501p-g.mnm b/system/ep3/maps-offline/m000501p-g.mnm deleted file mode 100755 index f7629c9f..00000000 Binary files a/system/ep3/maps-offline/m000501p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000501p-j.mnm b/system/ep3/maps-offline/m000501p-j.mnm deleted file mode 100755 index ad127cb9..00000000 Binary files a/system/ep3/maps-offline/m000501p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000501p-s.mnm b/system/ep3/maps-offline/m000501p-s.mnm deleted file mode 100755 index ca533f91..00000000 Binary files a/system/ep3/maps-offline/m000501p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000502p-e.mnm b/system/ep3/maps-offline/m000502p-e.mnm deleted file mode 100755 index 120c32fe..00000000 Binary files a/system/ep3/maps-offline/m000502p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000502p-f.mnm b/system/ep3/maps-offline/m000502p-f.mnm deleted file mode 100755 index fc63eacf..00000000 Binary files a/system/ep3/maps-offline/m000502p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000502p-g.mnm b/system/ep3/maps-offline/m000502p-g.mnm deleted file mode 100755 index ca58d505..00000000 Binary files a/system/ep3/maps-offline/m000502p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000502p-j.mnm b/system/ep3/maps-offline/m000502p-j.mnm deleted file mode 100755 index eb248b45..00000000 Binary files a/system/ep3/maps-offline/m000502p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000502p-s.mnm b/system/ep3/maps-offline/m000502p-s.mnm deleted file mode 100755 index c4f980ab..00000000 Binary files a/system/ep3/maps-offline/m000502p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000503p-e.mnm b/system/ep3/maps-offline/m000503p-e.mnm deleted file mode 100755 index 76f435e1..00000000 Binary files a/system/ep3/maps-offline/m000503p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000503p-f.mnm b/system/ep3/maps-offline/m000503p-f.mnm deleted file mode 100755 index 64dd3463..00000000 Binary files a/system/ep3/maps-offline/m000503p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000503p-g.mnm b/system/ep3/maps-offline/m000503p-g.mnm deleted file mode 100755 index 2ec648f4..00000000 Binary files a/system/ep3/maps-offline/m000503p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000503p-j.mnm b/system/ep3/maps-offline/m000503p-j.mnm deleted file mode 100755 index 1b994dbe..00000000 Binary files a/system/ep3/maps-offline/m000503p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000503p-s.mnm b/system/ep3/maps-offline/m000503p-s.mnm deleted file mode 100755 index df32d01c..00000000 Binary files a/system/ep3/maps-offline/m000503p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000504p-e.mnm b/system/ep3/maps-offline/m000504p-e.mnm deleted file mode 100755 index 9dad313e..00000000 Binary files a/system/ep3/maps-offline/m000504p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000504p-f.mnm b/system/ep3/maps-offline/m000504p-f.mnm deleted file mode 100755 index 1f18eb95..00000000 Binary files a/system/ep3/maps-offline/m000504p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000504p-g.mnm b/system/ep3/maps-offline/m000504p-g.mnm deleted file mode 100755 index f03d4650..00000000 Binary files a/system/ep3/maps-offline/m000504p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000504p-j.mnm b/system/ep3/maps-offline/m000504p-j.mnm deleted file mode 100755 index 528ed453..00000000 Binary files a/system/ep3/maps-offline/m000504p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000504p-s.mnm b/system/ep3/maps-offline/m000504p-s.mnm deleted file mode 100755 index 412c5b5f..00000000 Binary files a/system/ep3/maps-offline/m000504p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000505p-e.mnm b/system/ep3/maps-offline/m000505p-e.mnm deleted file mode 100755 index f277f547..00000000 Binary files a/system/ep3/maps-offline/m000505p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000505p-f.mnm b/system/ep3/maps-offline/m000505p-f.mnm deleted file mode 100755 index 6f6b6e6b..00000000 Binary files a/system/ep3/maps-offline/m000505p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000505p-g.mnm b/system/ep3/maps-offline/m000505p-g.mnm deleted file mode 100755 index ccb2721b..00000000 Binary files a/system/ep3/maps-offline/m000505p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000505p-j.mnm b/system/ep3/maps-offline/m000505p-j.mnm deleted file mode 100755 index 0fbbaa32..00000000 Binary files a/system/ep3/maps-offline/m000505p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000505p-s.mnm b/system/ep3/maps-offline/m000505p-s.mnm deleted file mode 100755 index c9433d03..00000000 Binary files a/system/ep3/maps-offline/m000505p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000506p-e.mnm b/system/ep3/maps-offline/m000506p-e.mnm deleted file mode 100755 index a6c232b8..00000000 Binary files a/system/ep3/maps-offline/m000506p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000506p-f.mnm b/system/ep3/maps-offline/m000506p-f.mnm deleted file mode 100755 index 080ccdec..00000000 Binary files a/system/ep3/maps-offline/m000506p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000506p-g.mnm b/system/ep3/maps-offline/m000506p-g.mnm deleted file mode 100755 index a81ebd2d..00000000 Binary files a/system/ep3/maps-offline/m000506p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000506p-j.mnm b/system/ep3/maps-offline/m000506p-j.mnm deleted file mode 100755 index aae3aed6..00000000 Binary files a/system/ep3/maps-offline/m000506p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000506p-s.mnm b/system/ep3/maps-offline/m000506p-s.mnm deleted file mode 100755 index 66db46d5..00000000 Binary files a/system/ep3/maps-offline/m000506p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000507p-e.mnm b/system/ep3/maps-offline/m000507p-e.mnm deleted file mode 100755 index 89ba5c64..00000000 Binary files a/system/ep3/maps-offline/m000507p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000507p-f.mnm b/system/ep3/maps-offline/m000507p-f.mnm deleted file mode 100755 index d57543e0..00000000 Binary files a/system/ep3/maps-offline/m000507p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000507p-g.mnm b/system/ep3/maps-offline/m000507p-g.mnm deleted file mode 100755 index ed7f5e4a..00000000 Binary files a/system/ep3/maps-offline/m000507p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000507p-j.mnm b/system/ep3/maps-offline/m000507p-j.mnm deleted file mode 100755 index 62af5f7f..00000000 Binary files a/system/ep3/maps-offline/m000507p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000507p-s.mnm b/system/ep3/maps-offline/m000507p-s.mnm deleted file mode 100755 index 9035fb71..00000000 Binary files a/system/ep3/maps-offline/m000507p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000508p-e.mnm b/system/ep3/maps-offline/m000508p-e.mnm deleted file mode 100755 index 04129e35..00000000 Binary files a/system/ep3/maps-offline/m000508p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000508p-f.mnm b/system/ep3/maps-offline/m000508p-f.mnm deleted file mode 100755 index 7b284d34..00000000 Binary files a/system/ep3/maps-offline/m000508p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000508p-g.mnm b/system/ep3/maps-offline/m000508p-g.mnm deleted file mode 100755 index cd2b4fba..00000000 Binary files a/system/ep3/maps-offline/m000508p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000508p-j.mnm b/system/ep3/maps-offline/m000508p-j.mnm deleted file mode 100755 index d5be3f90..00000000 Binary files a/system/ep3/maps-offline/m000508p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000508p-s.mnm b/system/ep3/maps-offline/m000508p-s.mnm deleted file mode 100755 index fd29c189..00000000 Binary files a/system/ep3/maps-offline/m000508p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000509p-e.mnm b/system/ep3/maps-offline/m000509p-e.mnm deleted file mode 100755 index 6886436e..00000000 Binary files a/system/ep3/maps-offline/m000509p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000509p-f.mnm b/system/ep3/maps-offline/m000509p-f.mnm deleted file mode 100755 index 32268c04..00000000 Binary files a/system/ep3/maps-offline/m000509p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000509p-g.mnm b/system/ep3/maps-offline/m000509p-g.mnm deleted file mode 100755 index 0c8a86ef..00000000 Binary files a/system/ep3/maps-offline/m000509p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000509p-j.mnm b/system/ep3/maps-offline/m000509p-j.mnm deleted file mode 100755 index cf9832fd..00000000 Binary files a/system/ep3/maps-offline/m000509p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000509p-s.mnm b/system/ep3/maps-offline/m000509p-s.mnm deleted file mode 100755 index 792df10d..00000000 Binary files a/system/ep3/maps-offline/m000509p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000510p-e.mnm b/system/ep3/maps-offline/m000510p-e.mnm deleted file mode 100755 index a4592eec..00000000 Binary files a/system/ep3/maps-offline/m000510p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000510p-f.mnm b/system/ep3/maps-offline/m000510p-f.mnm deleted file mode 100755 index 2c28c716..00000000 Binary files a/system/ep3/maps-offline/m000510p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000510p-g.mnm b/system/ep3/maps-offline/m000510p-g.mnm deleted file mode 100755 index 7e12f621..00000000 Binary files a/system/ep3/maps-offline/m000510p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000510p-j.mnm b/system/ep3/maps-offline/m000510p-j.mnm deleted file mode 100755 index 99545e25..00000000 Binary files a/system/ep3/maps-offline/m000510p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000510p-s.mnm b/system/ep3/maps-offline/m000510p-s.mnm deleted file mode 100755 index 44432fb8..00000000 Binary files a/system/ep3/maps-offline/m000510p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000511p-e.mnm b/system/ep3/maps-offline/m000511p-e.mnm deleted file mode 100755 index 51dd6231..00000000 Binary files a/system/ep3/maps-offline/m000511p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000511p-f.mnm b/system/ep3/maps-offline/m000511p-f.mnm deleted file mode 100755 index 51dd6231..00000000 Binary files a/system/ep3/maps-offline/m000511p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000511p-g.mnm b/system/ep3/maps-offline/m000511p-g.mnm deleted file mode 100755 index 51dd6231..00000000 Binary files a/system/ep3/maps-offline/m000511p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000511p-j.mnm b/system/ep3/maps-offline/m000511p-j.mnm deleted file mode 100755 index 2fe8869a..00000000 Binary files a/system/ep3/maps-offline/m000511p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000511p-s.mnm b/system/ep3/maps-offline/m000511p-s.mnm deleted file mode 100755 index 51dd6231..00000000 Binary files a/system/ep3/maps-offline/m000511p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000512p-e.mnm b/system/ep3/maps-offline/m000512p-e.mnm deleted file mode 100755 index 821fb035..00000000 Binary files a/system/ep3/maps-offline/m000512p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000512p-f.mnm b/system/ep3/maps-offline/m000512p-f.mnm deleted file mode 100755 index 821fb035..00000000 Binary files a/system/ep3/maps-offline/m000512p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000512p-g.mnm b/system/ep3/maps-offline/m000512p-g.mnm deleted file mode 100755 index 821fb035..00000000 Binary files a/system/ep3/maps-offline/m000512p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000512p-j.mnm b/system/ep3/maps-offline/m000512p-j.mnm deleted file mode 100755 index 6d19288f..00000000 Binary files a/system/ep3/maps-offline/m000512p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000512p-s.mnm b/system/ep3/maps-offline/m000512p-s.mnm deleted file mode 100755 index 821fb035..00000000 Binary files a/system/ep3/maps-offline/m000512p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000513p-e.mnm b/system/ep3/maps-offline/m000513p-e.mnm deleted file mode 100755 index cb7aa7fb..00000000 Binary files a/system/ep3/maps-offline/m000513p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000513p-f.mnm b/system/ep3/maps-offline/m000513p-f.mnm deleted file mode 100755 index cb7aa7fb..00000000 Binary files a/system/ep3/maps-offline/m000513p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000513p-g.mnm b/system/ep3/maps-offline/m000513p-g.mnm deleted file mode 100755 index cb7aa7fb..00000000 Binary files a/system/ep3/maps-offline/m000513p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000513p-j.mnm b/system/ep3/maps-offline/m000513p-j.mnm deleted file mode 100755 index cb7aa7fb..00000000 Binary files a/system/ep3/maps-offline/m000513p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000513p-s.mnm b/system/ep3/maps-offline/m000513p-s.mnm deleted file mode 100755 index cb7aa7fb..00000000 Binary files a/system/ep3/maps-offline/m000513p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000514p-e.mnm b/system/ep3/maps-offline/m000514p-e.mnm deleted file mode 100755 index 231a812f..00000000 Binary files a/system/ep3/maps-offline/m000514p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000514p-f.mnm b/system/ep3/maps-offline/m000514p-f.mnm deleted file mode 100755 index 231a812f..00000000 Binary files a/system/ep3/maps-offline/m000514p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000514p-g.mnm b/system/ep3/maps-offline/m000514p-g.mnm deleted file mode 100755 index 231a812f..00000000 Binary files a/system/ep3/maps-offline/m000514p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000514p-j.mnm b/system/ep3/maps-offline/m000514p-j.mnm deleted file mode 100755 index 231a812f..00000000 Binary files a/system/ep3/maps-offline/m000514p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000514p-s.mnm b/system/ep3/maps-offline/m000514p-s.mnm deleted file mode 100755 index 231a812f..00000000 Binary files a/system/ep3/maps-offline/m000514p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000515p-e.mnm b/system/ep3/maps-offline/m000515p-e.mnm deleted file mode 100755 index c5a8017d..00000000 Binary files a/system/ep3/maps-offline/m000515p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000515p-f.mnm b/system/ep3/maps-offline/m000515p-f.mnm deleted file mode 100755 index 8ad4ab9e..00000000 Binary files a/system/ep3/maps-offline/m000515p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000515p-g.mnm b/system/ep3/maps-offline/m000515p-g.mnm deleted file mode 100755 index 2b5a1831..00000000 Binary files a/system/ep3/maps-offline/m000515p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000515p-j.mnm b/system/ep3/maps-offline/m000515p-j.mnm deleted file mode 100755 index 455881df..00000000 Binary files a/system/ep3/maps-offline/m000515p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000515p-s.mnm b/system/ep3/maps-offline/m000515p-s.mnm deleted file mode 100755 index 0abc14b8..00000000 Binary files a/system/ep3/maps-offline/m000515p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000516p-e.mnm b/system/ep3/maps-offline/m000516p-e.mnm deleted file mode 100755 index 985bd335..00000000 Binary files a/system/ep3/maps-offline/m000516p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000516p-f.mnm b/system/ep3/maps-offline/m000516p-f.mnm deleted file mode 100755 index 2cce7c8e..00000000 Binary files a/system/ep3/maps-offline/m000516p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000516p-g.mnm b/system/ep3/maps-offline/m000516p-g.mnm deleted file mode 100755 index 3a5f52ff..00000000 Binary files a/system/ep3/maps-offline/m000516p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000516p-j.mnm b/system/ep3/maps-offline/m000516p-j.mnm deleted file mode 100755 index e832dace..00000000 Binary files a/system/ep3/maps-offline/m000516p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000516p-s.mnm b/system/ep3/maps-offline/m000516p-s.mnm deleted file mode 100755 index 8e660c37..00000000 Binary files a/system/ep3/maps-offline/m000516p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000517p-e.mnm b/system/ep3/maps-offline/m000517p-e.mnm deleted file mode 100755 index fcedb7eb..00000000 Binary files a/system/ep3/maps-offline/m000517p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000517p-f.mnm b/system/ep3/maps-offline/m000517p-f.mnm deleted file mode 100755 index fcedb7eb..00000000 Binary files a/system/ep3/maps-offline/m000517p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000517p-g.mnm b/system/ep3/maps-offline/m000517p-g.mnm deleted file mode 100755 index fcedb7eb..00000000 Binary files a/system/ep3/maps-offline/m000517p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000517p-j.mnm b/system/ep3/maps-offline/m000517p-j.mnm deleted file mode 100755 index fcedb7eb..00000000 Binary files a/system/ep3/maps-offline/m000517p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000517p-s.mnm b/system/ep3/maps-offline/m000517p-s.mnm deleted file mode 100755 index fcedb7eb..00000000 Binary files a/system/ep3/maps-offline/m000517p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000518p-e.mnm b/system/ep3/maps-offline/m000518p-e.mnm deleted file mode 100755 index 960ae2bb..00000000 Binary files a/system/ep3/maps-offline/m000518p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000518p-f.mnm b/system/ep3/maps-offline/m000518p-f.mnm deleted file mode 100755 index dc74ef7c..00000000 Binary files a/system/ep3/maps-offline/m000518p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000518p-g.mnm b/system/ep3/maps-offline/m000518p-g.mnm deleted file mode 100755 index dd33f934..00000000 Binary files a/system/ep3/maps-offline/m000518p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000518p-j.mnm b/system/ep3/maps-offline/m000518p-j.mnm deleted file mode 100755 index 224ba2dc..00000000 Binary files a/system/ep3/maps-offline/m000518p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000518p-s.mnm b/system/ep3/maps-offline/m000518p-s.mnm deleted file mode 100755 index 82d90110..00000000 Binary files a/system/ep3/maps-offline/m000518p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000519p-e.mnm b/system/ep3/maps-offline/m000519p-e.mnm deleted file mode 100755 index 009c8a02..00000000 Binary files a/system/ep3/maps-offline/m000519p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000519p-f.mnm b/system/ep3/maps-offline/m000519p-f.mnm deleted file mode 100755 index 881d66d4..00000000 Binary files a/system/ep3/maps-offline/m000519p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000519p-g.mnm b/system/ep3/maps-offline/m000519p-g.mnm deleted file mode 100755 index a16f1fd6..00000000 Binary files a/system/ep3/maps-offline/m000519p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000519p-j.mnm b/system/ep3/maps-offline/m000519p-j.mnm deleted file mode 100755 index e8761d40..00000000 Binary files a/system/ep3/maps-offline/m000519p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000519p-s.mnm b/system/ep3/maps-offline/m000519p-s.mnm deleted file mode 100755 index ce1ac66a..00000000 Binary files a/system/ep3/maps-offline/m000519p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000521p-e.mnm b/system/ep3/maps-offline/m000521p-e.mnm deleted file mode 100755 index 73d15865..00000000 Binary files a/system/ep3/maps-offline/m000521p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000521p-f.mnm b/system/ep3/maps-offline/m000521p-f.mnm deleted file mode 100755 index 84ba015d..00000000 Binary files a/system/ep3/maps-offline/m000521p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000521p-g.mnm b/system/ep3/maps-offline/m000521p-g.mnm deleted file mode 100755 index 07a8db4e..00000000 Binary files a/system/ep3/maps-offline/m000521p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000521p-j.mnm b/system/ep3/maps-offline/m000521p-j.mnm deleted file mode 100755 index b93f323a..00000000 Binary files a/system/ep3/maps-offline/m000521p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000521p-s.mnm b/system/ep3/maps-offline/m000521p-s.mnm deleted file mode 100755 index 4f25b7ca..00000000 Binary files a/system/ep3/maps-offline/m000521p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000522p-e.mnm b/system/ep3/maps-offline/m000522p-e.mnm deleted file mode 100755 index 47894345..00000000 Binary files a/system/ep3/maps-offline/m000522p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000522p-f.mnm b/system/ep3/maps-offline/m000522p-f.mnm deleted file mode 100755 index fa6fca10..00000000 Binary files a/system/ep3/maps-offline/m000522p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000522p-g.mnm b/system/ep3/maps-offline/m000522p-g.mnm deleted file mode 100755 index 9ea54e50..00000000 Binary files a/system/ep3/maps-offline/m000522p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000522p-j.mnm b/system/ep3/maps-offline/m000522p-j.mnm deleted file mode 100755 index 0cc4f5a3..00000000 Binary files a/system/ep3/maps-offline/m000522p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000522p-s.mnm b/system/ep3/maps-offline/m000522p-s.mnm deleted file mode 100755 index fccc9775..00000000 Binary files a/system/ep3/maps-offline/m000522p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000523p-e.mnm b/system/ep3/maps-offline/m000523p-e.mnm deleted file mode 100755 index 06ebf296..00000000 Binary files a/system/ep3/maps-offline/m000523p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000523p-f.mnm b/system/ep3/maps-offline/m000523p-f.mnm deleted file mode 100755 index 653fc981..00000000 Binary files a/system/ep3/maps-offline/m000523p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000523p-g.mnm b/system/ep3/maps-offline/m000523p-g.mnm deleted file mode 100755 index 624bd138..00000000 Binary files a/system/ep3/maps-offline/m000523p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000523p-j.mnm b/system/ep3/maps-offline/m000523p-j.mnm deleted file mode 100755 index 76736a23..00000000 Binary files a/system/ep3/maps-offline/m000523p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000523p-s.mnm b/system/ep3/maps-offline/m000523p-s.mnm deleted file mode 100755 index fdff3176..00000000 Binary files a/system/ep3/maps-offline/m000523p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000524p-e.mnm b/system/ep3/maps-offline/m000524p-e.mnm deleted file mode 100755 index b0472364..00000000 Binary files a/system/ep3/maps-offline/m000524p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000524p-f.mnm b/system/ep3/maps-offline/m000524p-f.mnm deleted file mode 100755 index a6313d3c..00000000 Binary files a/system/ep3/maps-offline/m000524p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000524p-g.mnm b/system/ep3/maps-offline/m000524p-g.mnm deleted file mode 100755 index 2f1d9346..00000000 Binary files a/system/ep3/maps-offline/m000524p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000524p-j.mnm b/system/ep3/maps-offline/m000524p-j.mnm deleted file mode 100755 index 05c20dfd..00000000 Binary files a/system/ep3/maps-offline/m000524p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000524p-s.mnm b/system/ep3/maps-offline/m000524p-s.mnm deleted file mode 100755 index 96c1089f..00000000 Binary files a/system/ep3/maps-offline/m000524p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000525p-e.mnm b/system/ep3/maps-offline/m000525p-e.mnm deleted file mode 100755 index e6abe087..00000000 Binary files a/system/ep3/maps-offline/m000525p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000525p-f.mnm b/system/ep3/maps-offline/m000525p-f.mnm deleted file mode 100755 index 30390061..00000000 Binary files a/system/ep3/maps-offline/m000525p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000525p-g.mnm b/system/ep3/maps-offline/m000525p-g.mnm deleted file mode 100755 index b4c008c3..00000000 Binary files a/system/ep3/maps-offline/m000525p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000525p-j.mnm b/system/ep3/maps-offline/m000525p-j.mnm deleted file mode 100755 index 533c0196..00000000 Binary files a/system/ep3/maps-offline/m000525p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000525p-s.mnm b/system/ep3/maps-offline/m000525p-s.mnm deleted file mode 100755 index ce708fe6..00000000 Binary files a/system/ep3/maps-offline/m000525p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000526p-e.mnm b/system/ep3/maps-offline/m000526p-e.mnm deleted file mode 100755 index a07202f2..00000000 Binary files a/system/ep3/maps-offline/m000526p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000526p-f.mnm b/system/ep3/maps-offline/m000526p-f.mnm deleted file mode 100755 index 05066cdf..00000000 Binary files a/system/ep3/maps-offline/m000526p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000526p-g.mnm b/system/ep3/maps-offline/m000526p-g.mnm deleted file mode 100755 index a8c3bbd9..00000000 Binary files a/system/ep3/maps-offline/m000526p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000526p-j.mnm b/system/ep3/maps-offline/m000526p-j.mnm deleted file mode 100755 index 71cc2045..00000000 Binary files a/system/ep3/maps-offline/m000526p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000526p-s.mnm b/system/ep3/maps-offline/m000526p-s.mnm deleted file mode 100755 index 4b28b9e9..00000000 Binary files a/system/ep3/maps-offline/m000526p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000527p-e.mnm b/system/ep3/maps-offline/m000527p-e.mnm deleted file mode 100755 index 3bd7f9a3..00000000 Binary files a/system/ep3/maps-offline/m000527p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000527p-f.mnm b/system/ep3/maps-offline/m000527p-f.mnm deleted file mode 100755 index 4fe4e1a3..00000000 Binary files a/system/ep3/maps-offline/m000527p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000527p-g.mnm b/system/ep3/maps-offline/m000527p-g.mnm deleted file mode 100755 index e86ad6bc..00000000 Binary files a/system/ep3/maps-offline/m000527p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000527p-j.mnm b/system/ep3/maps-offline/m000527p-j.mnm deleted file mode 100755 index 9e3dfd43..00000000 Binary files a/system/ep3/maps-offline/m000527p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000527p-s.mnm b/system/ep3/maps-offline/m000527p-s.mnm deleted file mode 100755 index 16685974..00000000 Binary files a/system/ep3/maps-offline/m000527p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000528p-e.mnm b/system/ep3/maps-offline/m000528p-e.mnm deleted file mode 100755 index 6253e5be..00000000 Binary files a/system/ep3/maps-offline/m000528p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000528p-f.mnm b/system/ep3/maps-offline/m000528p-f.mnm deleted file mode 100755 index f3ef692b..00000000 Binary files a/system/ep3/maps-offline/m000528p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000528p-g.mnm b/system/ep3/maps-offline/m000528p-g.mnm deleted file mode 100755 index 4fd097ec..00000000 Binary files a/system/ep3/maps-offline/m000528p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000528p-j.mnm b/system/ep3/maps-offline/m000528p-j.mnm deleted file mode 100755 index e98be4b0..00000000 Binary files a/system/ep3/maps-offline/m000528p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000528p-s.mnm b/system/ep3/maps-offline/m000528p-s.mnm deleted file mode 100755 index 9abc3b7e..00000000 Binary files a/system/ep3/maps-offline/m000528p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000529p-e.mnm b/system/ep3/maps-offline/m000529p-e.mnm deleted file mode 100755 index 6a7ce09c..00000000 Binary files a/system/ep3/maps-offline/m000529p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000529p-f.mnm b/system/ep3/maps-offline/m000529p-f.mnm deleted file mode 100755 index 82f0806a..00000000 Binary files a/system/ep3/maps-offline/m000529p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000529p-g.mnm b/system/ep3/maps-offline/m000529p-g.mnm deleted file mode 100755 index 098ea965..00000000 Binary files a/system/ep3/maps-offline/m000529p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000529p-j.mnm b/system/ep3/maps-offline/m000529p-j.mnm deleted file mode 100755 index df73330c..00000000 Binary files a/system/ep3/maps-offline/m000529p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000529p-s.mnm b/system/ep3/maps-offline/m000529p-s.mnm deleted file mode 100755 index 40cb918c..00000000 Binary files a/system/ep3/maps-offline/m000529p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000530p-e.mnm b/system/ep3/maps-offline/m000530p-e.mnm deleted file mode 100755 index 4d8d91fb..00000000 Binary files a/system/ep3/maps-offline/m000530p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000530p-f.mnm b/system/ep3/maps-offline/m000530p-f.mnm deleted file mode 100755 index 8e94330f..00000000 Binary files a/system/ep3/maps-offline/m000530p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000530p-g.mnm b/system/ep3/maps-offline/m000530p-g.mnm deleted file mode 100755 index f43ddf58..00000000 Binary files a/system/ep3/maps-offline/m000530p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000530p-j.mnm b/system/ep3/maps-offline/m000530p-j.mnm deleted file mode 100755 index f24e66c6..00000000 Binary files a/system/ep3/maps-offline/m000530p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000530p-s.mnm b/system/ep3/maps-offline/m000530p-s.mnm deleted file mode 100755 index e22859b6..00000000 Binary files a/system/ep3/maps-offline/m000530p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000531p-e.mnm b/system/ep3/maps-offline/m000531p-e.mnm deleted file mode 100755 index 623a8442..00000000 Binary files a/system/ep3/maps-offline/m000531p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000531p-f.mnm b/system/ep3/maps-offline/m000531p-f.mnm deleted file mode 100755 index 623a8442..00000000 Binary files a/system/ep3/maps-offline/m000531p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000531p-g.mnm b/system/ep3/maps-offline/m000531p-g.mnm deleted file mode 100755 index 623a8442..00000000 Binary files a/system/ep3/maps-offline/m000531p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000531p-j.mnm b/system/ep3/maps-offline/m000531p-j.mnm deleted file mode 100755 index 623a8442..00000000 Binary files a/system/ep3/maps-offline/m000531p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000531p-s.mnm b/system/ep3/maps-offline/m000531p-s.mnm deleted file mode 100755 index 623a8442..00000000 Binary files a/system/ep3/maps-offline/m000531p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000532p-e.mnm b/system/ep3/maps-offline/m000532p-e.mnm deleted file mode 100755 index 28a06c72..00000000 Binary files a/system/ep3/maps-offline/m000532p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000532p-f.mnm b/system/ep3/maps-offline/m000532p-f.mnm deleted file mode 100755 index 28a06c72..00000000 Binary files a/system/ep3/maps-offline/m000532p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000532p-g.mnm b/system/ep3/maps-offline/m000532p-g.mnm deleted file mode 100755 index 28a06c72..00000000 Binary files a/system/ep3/maps-offline/m000532p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000532p-j.mnm b/system/ep3/maps-offline/m000532p-j.mnm deleted file mode 100755 index dd4eafb7..00000000 Binary files a/system/ep3/maps-offline/m000532p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000532p-s.mnm b/system/ep3/maps-offline/m000532p-s.mnm deleted file mode 100755 index 28a06c72..00000000 Binary files a/system/ep3/maps-offline/m000532p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000533p-e.mnm b/system/ep3/maps-offline/m000533p-e.mnm deleted file mode 100755 index acc08ebc..00000000 Binary files a/system/ep3/maps-offline/m000533p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000533p-f.mnm b/system/ep3/maps-offline/m000533p-f.mnm deleted file mode 100755 index acc08ebc..00000000 Binary files a/system/ep3/maps-offline/m000533p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000533p-g.mnm b/system/ep3/maps-offline/m000533p-g.mnm deleted file mode 100755 index acc08ebc..00000000 Binary files a/system/ep3/maps-offline/m000533p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000533p-j.mnm b/system/ep3/maps-offline/m000533p-j.mnm deleted file mode 100755 index acc08ebc..00000000 Binary files a/system/ep3/maps-offline/m000533p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000533p-s.mnm b/system/ep3/maps-offline/m000533p-s.mnm deleted file mode 100755 index acc08ebc..00000000 Binary files a/system/ep3/maps-offline/m000533p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000534p-e.mnm b/system/ep3/maps-offline/m000534p-e.mnm deleted file mode 100755 index a2ee694b..00000000 Binary files a/system/ep3/maps-offline/m000534p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000534p-f.mnm b/system/ep3/maps-offline/m000534p-f.mnm deleted file mode 100755 index a2ee694b..00000000 Binary files a/system/ep3/maps-offline/m000534p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000534p-g.mnm b/system/ep3/maps-offline/m000534p-g.mnm deleted file mode 100755 index a2ee694b..00000000 Binary files a/system/ep3/maps-offline/m000534p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000534p-j.mnm b/system/ep3/maps-offline/m000534p-j.mnm deleted file mode 100755 index a2ee694b..00000000 Binary files a/system/ep3/maps-offline/m000534p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000534p-s.mnm b/system/ep3/maps-offline/m000534p-s.mnm deleted file mode 100755 index a2ee694b..00000000 Binary files a/system/ep3/maps-offline/m000534p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000535p-e.mnm b/system/ep3/maps-offline/m000535p-e.mnm deleted file mode 100755 index e59a2cda..00000000 Binary files a/system/ep3/maps-offline/m000535p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000535p-f.mnm b/system/ep3/maps-offline/m000535p-f.mnm deleted file mode 100755 index 144103b1..00000000 Binary files a/system/ep3/maps-offline/m000535p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000535p-g.mnm b/system/ep3/maps-offline/m000535p-g.mnm deleted file mode 100755 index 62fac632..00000000 Binary files a/system/ep3/maps-offline/m000535p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000535p-j.mnm b/system/ep3/maps-offline/m000535p-j.mnm deleted file mode 100755 index ff014cc1..00000000 Binary files a/system/ep3/maps-offline/m000535p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000535p-s.mnm b/system/ep3/maps-offline/m000535p-s.mnm deleted file mode 100755 index 0f5ba5fa..00000000 Binary files a/system/ep3/maps-offline/m000535p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000536p-e.mnm b/system/ep3/maps-offline/m000536p-e.mnm deleted file mode 100755 index 9ed65142..00000000 Binary files a/system/ep3/maps-offline/m000536p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000536p-f.mnm b/system/ep3/maps-offline/m000536p-f.mnm deleted file mode 100755 index 0bb8013f..00000000 Binary files a/system/ep3/maps-offline/m000536p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000536p-g.mnm b/system/ep3/maps-offline/m000536p-g.mnm deleted file mode 100755 index 9c0b808b..00000000 Binary files a/system/ep3/maps-offline/m000536p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000536p-j.mnm b/system/ep3/maps-offline/m000536p-j.mnm deleted file mode 100755 index 395f09fa..00000000 Binary files a/system/ep3/maps-offline/m000536p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000536p-s.mnm b/system/ep3/maps-offline/m000536p-s.mnm deleted file mode 100755 index 05686f31..00000000 Binary files a/system/ep3/maps-offline/m000536p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000537p-e.mnm b/system/ep3/maps-offline/m000537p-e.mnm deleted file mode 100755 index 8923a4d2..00000000 Binary files a/system/ep3/maps-offline/m000537p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000537p-f.mnm b/system/ep3/maps-offline/m000537p-f.mnm deleted file mode 100755 index 8923a4d2..00000000 Binary files a/system/ep3/maps-offline/m000537p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000537p-g.mnm b/system/ep3/maps-offline/m000537p-g.mnm deleted file mode 100755 index 8923a4d2..00000000 Binary files a/system/ep3/maps-offline/m000537p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000537p-j.mnm b/system/ep3/maps-offline/m000537p-j.mnm deleted file mode 100755 index 8923a4d2..00000000 Binary files a/system/ep3/maps-offline/m000537p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000537p-s.mnm b/system/ep3/maps-offline/m000537p-s.mnm deleted file mode 100755 index 8923a4d2..00000000 Binary files a/system/ep3/maps-offline/m000537p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000538p-e.mnm b/system/ep3/maps-offline/m000538p-e.mnm deleted file mode 100755 index cd265daf..00000000 Binary files a/system/ep3/maps-offline/m000538p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000538p-f.mnm b/system/ep3/maps-offline/m000538p-f.mnm deleted file mode 100755 index 5142bf21..00000000 Binary files a/system/ep3/maps-offline/m000538p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000538p-g.mnm b/system/ep3/maps-offline/m000538p-g.mnm deleted file mode 100755 index f16c8019..00000000 Binary files a/system/ep3/maps-offline/m000538p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000538p-j.mnm b/system/ep3/maps-offline/m000538p-j.mnm deleted file mode 100755 index b27e4016..00000000 Binary files a/system/ep3/maps-offline/m000538p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000538p-s.mnm b/system/ep3/maps-offline/m000538p-s.mnm deleted file mode 100755 index 8e393392..00000000 Binary files a/system/ep3/maps-offline/m000538p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000539p-e.mnm b/system/ep3/maps-offline/m000539p-e.mnm deleted file mode 100755 index b92dd32e..00000000 Binary files a/system/ep3/maps-offline/m000539p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000539p-f.mnm b/system/ep3/maps-offline/m000539p-f.mnm deleted file mode 100755 index 16b87f71..00000000 Binary files a/system/ep3/maps-offline/m000539p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000539p-g.mnm b/system/ep3/maps-offline/m000539p-g.mnm deleted file mode 100755 index 97b3b41c..00000000 Binary files a/system/ep3/maps-offline/m000539p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000539p-j.mnm b/system/ep3/maps-offline/m000539p-j.mnm deleted file mode 100755 index 229095bd..00000000 Binary files a/system/ep3/maps-offline/m000539p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000539p-s.mnm b/system/ep3/maps-offline/m000539p-s.mnm deleted file mode 100755 index 996056c4..00000000 Binary files a/system/ep3/maps-offline/m000539p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000550p-e.mnm b/system/ep3/maps-offline/m000550p-e.mnm deleted file mode 100755 index 9a4044d8..00000000 Binary files a/system/ep3/maps-offline/m000550p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000550p-f.mnm b/system/ep3/maps-offline/m000550p-f.mnm deleted file mode 100755 index 80e09ed7..00000000 Binary files a/system/ep3/maps-offline/m000550p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000550p-g.mnm b/system/ep3/maps-offline/m000550p-g.mnm deleted file mode 100755 index a669c7f2..00000000 Binary files a/system/ep3/maps-offline/m000550p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000550p-j.mnm b/system/ep3/maps-offline/m000550p-j.mnm deleted file mode 100755 index f313808c..00000000 Binary files a/system/ep3/maps-offline/m000550p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000550p-s.mnm b/system/ep3/maps-offline/m000550p-s.mnm deleted file mode 100755 index 12201701..00000000 Binary files a/system/ep3/maps-offline/m000550p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000551p-e.mnm b/system/ep3/maps-offline/m000551p-e.mnm deleted file mode 100755 index 462173e8..00000000 Binary files a/system/ep3/maps-offline/m000551p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000551p-f.mnm b/system/ep3/maps-offline/m000551p-f.mnm deleted file mode 100755 index bd204688..00000000 Binary files a/system/ep3/maps-offline/m000551p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000551p-g.mnm b/system/ep3/maps-offline/m000551p-g.mnm deleted file mode 100755 index 19632d01..00000000 Binary files a/system/ep3/maps-offline/m000551p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000551p-j.mnm b/system/ep3/maps-offline/m000551p-j.mnm deleted file mode 100755 index 2ab3bae6..00000000 Binary files a/system/ep3/maps-offline/m000551p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000551p-s.mnm b/system/ep3/maps-offline/m000551p-s.mnm deleted file mode 100755 index 5a791bdf..00000000 Binary files a/system/ep3/maps-offline/m000551p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000552p-e.mnm b/system/ep3/maps-offline/m000552p-e.mnm deleted file mode 100755 index 9ee6d33d..00000000 Binary files a/system/ep3/maps-offline/m000552p-e.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000552p-f.mnm b/system/ep3/maps-offline/m000552p-f.mnm deleted file mode 100755 index 21317a02..00000000 Binary files a/system/ep3/maps-offline/m000552p-f.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000552p-g.mnm b/system/ep3/maps-offline/m000552p-g.mnm deleted file mode 100755 index f137ce5a..00000000 Binary files a/system/ep3/maps-offline/m000552p-g.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000552p-j.mnm b/system/ep3/maps-offline/m000552p-j.mnm deleted file mode 100755 index baabd73c..00000000 Binary files a/system/ep3/maps-offline/m000552p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000552p-s.mnm b/system/ep3/maps-offline/m000552p-s.mnm deleted file mode 100755 index 97356e01..00000000 Binary files a/system/ep3/maps-offline/m000552p-s.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000601p-j.mnm b/system/ep3/maps-offline/m000601p-j.mnm deleted file mode 100755 index 10e1eba4..00000000 Binary files a/system/ep3/maps-offline/m000601p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000602p-j.mnm b/system/ep3/maps-offline/m000602p-j.mnm deleted file mode 100755 index e2686473..00000000 Binary files a/system/ep3/maps-offline/m000602p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000603p-j.mnm b/system/ep3/maps-offline/m000603p-j.mnm deleted file mode 100755 index 1ec5b42d..00000000 Binary files a/system/ep3/maps-offline/m000603p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000604p-j.mnm b/system/ep3/maps-offline/m000604p-j.mnm deleted file mode 100755 index a7c51aef..00000000 Binary files a/system/ep3/maps-offline/m000604p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000605p-j.mnm b/system/ep3/maps-offline/m000605p-j.mnm deleted file mode 100755 index cbbbb285..00000000 Binary files a/system/ep3/maps-offline/m000605p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000606p-j.mnm b/system/ep3/maps-offline/m000606p-j.mnm deleted file mode 100755 index e91388b1..00000000 Binary files a/system/ep3/maps-offline/m000606p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000607p-j.mnm b/system/ep3/maps-offline/m000607p-j.mnm deleted file mode 100755 index f09a8607..00000000 Binary files a/system/ep3/maps-offline/m000607p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000608p-j.mnm b/system/ep3/maps-offline/m000608p-j.mnm deleted file mode 100755 index 00a85c92..00000000 Binary files a/system/ep3/maps-offline/m000608p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000609p-j.mnm b/system/ep3/maps-offline/m000609p-j.mnm deleted file mode 100755 index 757cd207..00000000 Binary files a/system/ep3/maps-offline/m000609p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000610p-j.mnm b/system/ep3/maps-offline/m000610p-j.mnm deleted file mode 100755 index ccc7e4e7..00000000 Binary files a/system/ep3/maps-offline/m000610p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000613p-j.mnm b/system/ep3/maps-offline/m000613p-j.mnm deleted file mode 100755 index d28f72a7..00000000 Binary files a/system/ep3/maps-offline/m000613p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000614p-j.mnm b/system/ep3/maps-offline/m000614p-j.mnm deleted file mode 100755 index f4ab2d84..00000000 Binary files a/system/ep3/maps-offline/m000614p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000615p-j.mnm b/system/ep3/maps-offline/m000615p-j.mnm deleted file mode 100755 index c229af54..00000000 Binary files a/system/ep3/maps-offline/m000615p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000616p-j.mnm b/system/ep3/maps-offline/m000616p-j.mnm deleted file mode 100755 index 08a3b5cb..00000000 Binary files a/system/ep3/maps-offline/m000616p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000618p-j.mnm b/system/ep3/maps-offline/m000618p-j.mnm deleted file mode 100755 index 409b9c75..00000000 Binary files a/system/ep3/maps-offline/m000618p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000619p-j.mnm b/system/ep3/maps-offline/m000619p-j.mnm deleted file mode 100755 index 0b449177..00000000 Binary files a/system/ep3/maps-offline/m000619p-j.mnm and /dev/null differ diff --git a/system/ep3/maps-offline/m000999p-j.mnm b/system/ep3/maps-offline/m000999p-j.mnm deleted file mode 100755 index 0625c84b..00000000 Binary files a/system/ep3/maps-offline/m000999p-j.mnm and /dev/null differ diff --git a/system/ep3/maps/download-final/category.json b/system/ep3/maps/download-final/category.json new file mode 100644 index 00000000..7a850b24 --- /dev/null +++ b/system/ep3/maps/download-final/category.json @@ -0,0 +1,5 @@ +{ + "VisibilityFlags": 0x0F, + "Name": "Downloads", + "Description": "Maps originally made\nfor Episode 3 final\nedition", +} diff --git a/system/ep3/maps-download/e901-gc3-e.mnm b/system/ep3/maps/download-final/e901-gc3-e.mnm similarity index 100% rename from system/ep3/maps-download/e901-gc3-e.mnm rename to system/ep3/maps/download-final/e901-gc3-e.mnm diff --git a/system/ep3/maps-download/e901-gc3-j.mnm b/system/ep3/maps/download-final/e901-gc3-j.mnm similarity index 100% rename from system/ep3/maps-download/e901-gc3-j.mnm rename to system/ep3/maps/download-final/e901-gc3-j.mnm diff --git a/system/ep3/maps-download/e903-gc3-e.mnm b/system/ep3/maps/download-final/e903-gc3-e.mnm similarity index 100% rename from system/ep3/maps-download/e903-gc3-e.mnm rename to system/ep3/maps/download-final/e903-gc3-e.mnm diff --git a/system/ep3/maps-download/e903-gc3-j.mnm b/system/ep3/maps/download-final/e903-gc3-j.mnm similarity index 100% rename from system/ep3/maps-download/e903-gc3-j.mnm rename to system/ep3/maps/download-final/e903-gc3-j.mnm diff --git a/system/ep3/maps-download/e904-gc3-e.mnm b/system/ep3/maps/download-final/e904-gc3-e.mnm similarity index 100% rename from system/ep3/maps-download/e904-gc3-e.mnm rename to system/ep3/maps/download-final/e904-gc3-e.mnm diff --git a/system/ep3/maps-download/e904-gc3-j.mnm b/system/ep3/maps/download-final/e904-gc3-j.mnm similarity index 100% rename from system/ep3/maps-download/e904-gc3-j.mnm rename to system/ep3/maps/download-final/e904-gc3-j.mnm diff --git a/system/ep3/maps-download/e905-gc3-e.mnm b/system/ep3/maps/download-final/e905-gc3-e.mnm similarity index 100% rename from system/ep3/maps-download/e905-gc3-e.mnm rename to system/ep3/maps/download-final/e905-gc3-e.mnm diff --git a/system/ep3/maps-download/e905-gc3-j.mnm b/system/ep3/maps/download-final/e905-gc3-j.mnm similarity index 100% rename from system/ep3/maps-download/e905-gc3-j.mnm rename to system/ep3/maps/download-final/e905-gc3-j.mnm diff --git a/system/ep3/maps-download/e906-gc3-e.mnm b/system/ep3/maps/download-final/e906-gc3-e.mnm similarity index 100% rename from system/ep3/maps-download/e906-gc3-e.mnm rename to system/ep3/maps/download-final/e906-gc3-e.mnm diff --git a/system/ep3/maps-download/e906-gc3-j.mnm b/system/ep3/maps/download-final/e906-gc3-j.mnm similarity index 100% rename from system/ep3/maps-download/e906-gc3-j.mnm rename to system/ep3/maps/download-final/e906-gc3-j.mnm diff --git a/system/ep3/maps-download/e907-gc3-e.mnm b/system/ep3/maps/download-final/e907-gc3-e.mnm similarity index 100% rename from system/ep3/maps-download/e907-gc3-e.mnm rename to system/ep3/maps/download-final/e907-gc3-e.mnm diff --git a/system/ep3/maps-download/e907-gc3-j.mnm b/system/ep3/maps/download-final/e907-gc3-j.mnm similarity index 100% rename from system/ep3/maps-download/e907-gc3-j.mnm rename to system/ep3/maps/download-final/e907-gc3-j.mnm diff --git a/system/ep3/maps-download/e908-gc3-e.mnm b/system/ep3/maps/download-final/e908-gc3-e.mnm similarity index 100% rename from system/ep3/maps-download/e908-gc3-e.mnm rename to system/ep3/maps/download-final/e908-gc3-e.mnm diff --git a/system/ep3/maps-download/e908-gc3-j.mnm b/system/ep3/maps/download-final/e908-gc3-j.mnm similarity index 100% rename from system/ep3/maps-download/e908-gc3-j.mnm rename to system/ep3/maps/download-final/e908-gc3-j.mnm diff --git a/system/ep3/maps/download-trial/category.json b/system/ep3/maps/download-trial/category.json new file mode 100644 index 00000000..bf1c76a3 --- /dev/null +++ b/system/ep3/maps/download-trial/category.json @@ -0,0 +1,5 @@ +{ + "VisibilityFlags": 0x0F, + "Name": "Trial downloads", + "Description": "Maps originally made\nfor Episode 3 Trial\nEdition", +} diff --git a/system/ep3/maps-download/e765-gc3-e.mnm b/system/ep3/maps/download-trial/e765-gc3-e.mnm similarity index 100% rename from system/ep3/maps-download/e765-gc3-e.mnm rename to system/ep3/maps/download-trial/e765-gc3-e.mnm diff --git a/system/ep3/maps-download/e765-gc3-j.mnm b/system/ep3/maps/download-trial/e765-gc3-j.mnm similarity index 100% rename from system/ep3/maps-download/e765-gc3-j.mnm rename to system/ep3/maps/download-trial/e765-gc3-j.mnm diff --git a/system/ep3/maps/e765-gc3-e.mnm b/system/ep3/maps/e765-gc3-e.mnm deleted file mode 120000 index 75bcef0d..00000000 --- a/system/ep3/maps/e765-gc3-e.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e765-gc3-e.mnm \ No newline at end of file diff --git a/system/ep3/maps/e765-gc3-j.mnm b/system/ep3/maps/e765-gc3-j.mnm deleted file mode 120000 index f8ca8bc2..00000000 --- a/system/ep3/maps/e765-gc3-j.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e765-gc3-j.mnm \ No newline at end of file diff --git a/system/ep3/maps/e901-gc3-e.mnm b/system/ep3/maps/e901-gc3-e.mnm deleted file mode 120000 index 770ced57..00000000 --- a/system/ep3/maps/e901-gc3-e.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e901-gc3-e.mnm \ No newline at end of file diff --git a/system/ep3/maps/e901-gc3-j.mnm b/system/ep3/maps/e901-gc3-j.mnm deleted file mode 120000 index 0670658d..00000000 --- a/system/ep3/maps/e901-gc3-j.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e901-gc3-j.mnm \ No newline at end of file diff --git a/system/ep3/maps/e903-gc3-e.mnm b/system/ep3/maps/e903-gc3-e.mnm deleted file mode 120000 index 2756dff9..00000000 --- a/system/ep3/maps/e903-gc3-e.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e903-gc3-e.mnm \ No newline at end of file diff --git a/system/ep3/maps/e903-gc3-j.mnm b/system/ep3/maps/e903-gc3-j.mnm deleted file mode 120000 index 192d8ba0..00000000 --- a/system/ep3/maps/e903-gc3-j.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e903-gc3-j.mnm \ No newline at end of file diff --git a/system/ep3/maps/e904-gc3-e.mnm b/system/ep3/maps/e904-gc3-e.mnm deleted file mode 120000 index a46ed2a7..00000000 --- a/system/ep3/maps/e904-gc3-e.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e904-gc3-e.mnm \ No newline at end of file diff --git a/system/ep3/maps/e904-gc3-j.mnm b/system/ep3/maps/e904-gc3-j.mnm deleted file mode 120000 index cfe13275..00000000 --- a/system/ep3/maps/e904-gc3-j.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e904-gc3-j.mnm \ No newline at end of file diff --git a/system/ep3/maps/e905-gc3-e.mnm b/system/ep3/maps/e905-gc3-e.mnm deleted file mode 120000 index 8172e948..00000000 --- a/system/ep3/maps/e905-gc3-e.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e905-gc3-e.mnm \ No newline at end of file diff --git a/system/ep3/maps/e905-gc3-j.mnm b/system/ep3/maps/e905-gc3-j.mnm deleted file mode 120000 index df72d8bc..00000000 --- a/system/ep3/maps/e905-gc3-j.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e905-gc3-j.mnm \ No newline at end of file diff --git a/system/ep3/maps/e906-gc3-e.mnm b/system/ep3/maps/e906-gc3-e.mnm deleted file mode 120000 index 821cac56..00000000 --- a/system/ep3/maps/e906-gc3-e.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e906-gc3-e.mnm \ No newline at end of file diff --git a/system/ep3/maps/e906-gc3-j.mnm b/system/ep3/maps/e906-gc3-j.mnm deleted file mode 120000 index 9fe18448..00000000 --- a/system/ep3/maps/e906-gc3-j.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e906-gc3-j.mnm \ No newline at end of file diff --git a/system/ep3/maps/e907-gc3-e.mnm b/system/ep3/maps/e907-gc3-e.mnm deleted file mode 120000 index 31f3f7e9..00000000 --- a/system/ep3/maps/e907-gc3-e.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e907-gc3-e.mnm \ No newline at end of file diff --git a/system/ep3/maps/e907-gc3-j.mnm b/system/ep3/maps/e907-gc3-j.mnm deleted file mode 120000 index 4b641c42..00000000 --- a/system/ep3/maps/e907-gc3-j.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e907-gc3-j.mnm \ No newline at end of file diff --git a/system/ep3/maps/e908-gc3-e.mnm b/system/ep3/maps/e908-gc3-e.mnm deleted file mode 120000 index b3e31b3e..00000000 --- a/system/ep3/maps/e908-gc3-e.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e908-gc3-e.mnm \ No newline at end of file diff --git a/system/ep3/maps/e908-gc3-j.mnm b/system/ep3/maps/e908-gc3-j.mnm deleted file mode 120000 index 12ae64ca..00000000 --- a/system/ep3/maps/e908-gc3-j.mnm +++ /dev/null @@ -1 +0,0 @@ -../maps-download/e908-gc3-j.mnm \ No newline at end of file diff --git a/system/ep3/maps/online/category.json b/system/ep3/maps/online/category.json new file mode 100644 index 00000000..9c572aa7 --- /dev/null +++ b/system/ep3/maps/online/category.json @@ -0,0 +1,19 @@ +{ + // VisibilityFlags is a bit field specifying where this category appears in + // the game. The bits are: + // 0x01: Appears in the online quest list for Trial Edition + // 0x02: Appears in the online quest list for all other versions + // 0x04: Appears in the download quest list for Trial Edition + // 0x08: Appears in the download quest list for all other versions + // For the online quest list, all categories are aggregated into one, since + // the game has no way to separate quests into categories at the battle setup + // counter. + "VisibilityFlags": 0x03, + + // The category's name. This is only used for download categories. + "Name": "Online quests", + + // The category's description. This appears in the small window under the + // categories menu. + "Description": "Maps and quests to be played online", +} diff --git a/system/ep3/maps/map000001F4-e.bin b/system/ep3/maps/online/map000001F4-e.bin similarity index 100% rename from system/ep3/maps/map000001F4-e.bin rename to system/ep3/maps/online/map000001F4-e.bin diff --git a/system/ep3/maps/map000001F5-e.bin b/system/ep3/maps/online/map000001F5-e.bin similarity index 100% rename from system/ep3/maps/map000001F5-e.bin rename to system/ep3/maps/online/map000001F5-e.bin diff --git a/system/ep3/maps/map000001F6-e.bin b/system/ep3/maps/online/map000001F6-e.bin similarity index 100% rename from system/ep3/maps/map000001F6-e.bin rename to system/ep3/maps/online/map000001F6-e.bin diff --git a/system/ep3/maps/map000001F7-e.bin b/system/ep3/maps/online/map000001F7-e.bin similarity index 100% rename from system/ep3/maps/map000001F7-e.bin rename to system/ep3/maps/online/map000001F7-e.bin diff --git a/system/ep3/maps/map000001F8-e.bin b/system/ep3/maps/online/map000001F8-e.bin similarity index 100% rename from system/ep3/maps/map000001F8-e.bin rename to system/ep3/maps/online/map000001F8-e.bin diff --git a/system/ep3/maps/map00000230-e.bin b/system/ep3/maps/online/map00000230-e.bin similarity index 100% rename from system/ep3/maps/map00000230-e.bin rename to system/ep3/maps/online/map00000230-e.bin diff --git a/system/ep3/maps/map00000231-e.bin b/system/ep3/maps/online/map00000231-e.bin similarity index 100% rename from system/ep3/maps/map00000231-e.bin rename to system/ep3/maps/online/map00000231-e.bin diff --git a/system/ep3/maps/map00000244-e.bin b/system/ep3/maps/online/map00000244-e.bin similarity index 100% rename from system/ep3/maps/map00000244-e.bin rename to system/ep3/maps/online/map00000244-e.bin diff --git a/system/ep3/maps/map00000245-e.bin b/system/ep3/maps/online/map00000245-e.bin similarity index 100% rename from system/ep3/maps/map00000245-e.bin rename to system/ep3/maps/online/map00000245-e.bin diff --git a/system/ep3/maps/map00000246-e.bin b/system/ep3/maps/online/map00000246-e.bin similarity index 100% rename from system/ep3/maps/map00000246-e.bin rename to system/ep3/maps/online/map00000246-e.bin diff --git a/system/ep3/maps/map00000258-e.bin b/system/ep3/maps/online/map00000258-e.bin similarity index 100% rename from system/ep3/maps/map00000258-e.bin rename to system/ep3/maps/online/map00000258-e.bin diff --git a/system/ep3/maps/map00000259-e.bin b/system/ep3/maps/online/map00000259-e.bin similarity index 100% rename from system/ep3/maps/map00000259-e.bin rename to system/ep3/maps/online/map00000259-e.bin diff --git a/system/ep3/maps/map0000026C-e.bin b/system/ep3/maps/online/map0000026C-e.bin similarity index 100% rename from system/ep3/maps/map0000026C-e.bin rename to system/ep3/maps/online/map0000026C-e.bin diff --git a/system/ep3/maps/map0000026D-e.bin b/system/ep3/maps/online/map0000026D-e.bin similarity index 100% rename from system/ep3/maps/map0000026D-e.bin rename to system/ep3/maps/online/map0000026D-e.bin diff --git a/system/ep3/maps/map0000026E-e.bin b/system/ep3/maps/online/map0000026E-e.bin similarity index 100% rename from system/ep3/maps/map0000026E-e.bin rename to system/ep3/maps/online/map0000026E-e.bin diff --git a/system/ep3/maps/map0000026F-e.bin b/system/ep3/maps/online/map0000026F-e.bin similarity index 100% rename from system/ep3/maps/map0000026F-e.bin rename to system/ep3/maps/online/map0000026F-e.bin diff --git a/system/ep3/maps/map00000280-e.bin b/system/ep3/maps/online/map00000280-e.bin similarity index 100% rename from system/ep3/maps/map00000280-e.bin rename to system/ep3/maps/online/map00000280-e.bin diff --git a/system/ep3/maps/map00000281-e.bin b/system/ep3/maps/online/map00000281-e.bin similarity index 100% rename from system/ep3/maps/map00000281-e.bin rename to system/ep3/maps/online/map00000281-e.bin diff --git a/system/ep3/maps/map00000282-e.bin b/system/ep3/maps/online/map00000282-e.bin similarity index 100% rename from system/ep3/maps/map00000282-e.bin rename to system/ep3/maps/online/map00000282-e.bin diff --git a/system/ep3/maps/map00000294-e.bin b/system/ep3/maps/online/map00000294-e.bin similarity index 100% rename from system/ep3/maps/map00000294-e.bin rename to system/ep3/maps/online/map00000294-e.bin diff --git a/system/ep3/maps/map00000295-e.bin b/system/ep3/maps/online/map00000295-e.bin similarity index 100% rename from system/ep3/maps/map00000295-e.bin rename to system/ep3/maps/online/map00000295-e.bin diff --git a/system/ep3/maps/map00000296-e.bin b/system/ep3/maps/online/map00000296-e.bin similarity index 100% rename from system/ep3/maps/map00000296-e.bin rename to system/ep3/maps/online/map00000296-e.bin diff --git a/system/ep3/maps/map000002A8-e.bin b/system/ep3/maps/online/map000002A8-e.bin similarity index 100% rename from system/ep3/maps/map000002A8-e.bin rename to system/ep3/maps/online/map000002A8-e.bin diff --git a/system/ep3/maps/map000002A9-e.bin b/system/ep3/maps/online/map000002A9-e.bin similarity index 100% rename from system/ep3/maps/map000002A9-e.bin rename to system/ep3/maps/online/map000002A9-e.bin diff --git a/system/ep3/maps/map000002BC-e.bin b/system/ep3/maps/online/map000002BC-e.bin similarity index 100% rename from system/ep3/maps/map000002BC-e.bin rename to system/ep3/maps/online/map000002BC-e.bin diff --git a/system/ep3/maps/map000002BD-e.bin b/system/ep3/maps/online/map000002BD-e.bin similarity index 100% rename from system/ep3/maps/map000002BD-e.bin rename to system/ep3/maps/online/map000002BD-e.bin diff --git a/system/ep3/maps/map000002E4-e.bin b/system/ep3/maps/online/map000002E4-e.bin similarity index 100% rename from system/ep3/maps/map000002E4-e.bin rename to system/ep3/maps/online/map000002E4-e.bin diff --git a/system/ep3/maps/map000002E5-e.bin b/system/ep3/maps/online/map000002E5-e.bin similarity index 100% rename from system/ep3/maps/map000002E5-e.bin rename to system/ep3/maps/online/map000002E5-e.bin diff --git a/system/ep3/maps/map000002F8-e.bin b/system/ep3/maps/online/map000002F8-e.bin similarity index 100% rename from system/ep3/maps/map000002F8-e.bin rename to system/ep3/maps/online/map000002F8-e.bin diff --git a/system/ep3/maps/map000002F9-e.bin b/system/ep3/maps/online/map000002F9-e.bin similarity index 100% rename from system/ep3/maps/map000002F9-e.bin rename to system/ep3/maps/online/map000002F9-e.bin diff --git a/system/ep3/maps/map000002FA-e.bin b/system/ep3/maps/online/map000002FA-e.bin similarity index 100% rename from system/ep3/maps/map000002FA-e.bin rename to system/ep3/maps/online/map000002FA-e.bin diff --git a/system/ep3/maps/map00000320-e.bin b/system/ep3/maps/online/map00000320-e.bin similarity index 100% rename from system/ep3/maps/map00000320-e.bin rename to system/ep3/maps/online/map00000320-e.bin diff --git a/system/ep3/maps/map00000321-e.bin b/system/ep3/maps/online/map00000321-e.bin similarity index 100% rename from system/ep3/maps/map00000321-e.bin rename to system/ep3/maps/online/map00000321-e.bin diff --git a/system/ep3/maps/map00000334-e.bin b/system/ep3/maps/online/map00000334-e.bin similarity index 100% rename from system/ep3/maps/map00000334-e.bin rename to system/ep3/maps/online/map00000334-e.bin diff --git a/system/ep3/maps/map00000335-e.bin b/system/ep3/maps/online/map00000335-e.bin similarity index 100% rename from system/ep3/maps/map00000335-e.bin rename to system/ep3/maps/online/map00000335-e.bin diff --git a/system/ep3/maps/map0000033E-e.bin b/system/ep3/maps/online/map0000033E-e.bin similarity index 100% rename from system/ep3/maps/map0000033E-e.bin rename to system/ep3/maps/online/map0000033E-e.bin diff --git a/system/ep3/maps/map0000033F-e.bin b/system/ep3/maps/online/map0000033F-e.bin similarity index 100% rename from system/ep3/maps/map0000033F-e.bin rename to system/ep3/maps/online/map0000033F-e.bin diff --git a/system/ep3/maps/map00000340-e.bin b/system/ep3/maps/online/map00000340-e.bin similarity index 100% rename from system/ep3/maps/map00000340-e.bin rename to system/ep3/maps/online/map00000340-e.bin diff --git a/system/ep3/maps/map00000341-e.bin b/system/ep3/maps/online/map00000341-e.bin similarity index 100% rename from system/ep3/maps/map00000341-e.bin rename to system/ep3/maps/online/map00000341-e.bin diff --git a/system/ep3/maps/map00000342-e.bin b/system/ep3/maps/online/map00000342-e.bin similarity index 100% rename from system/ep3/maps/map00000342-e.bin rename to system/ep3/maps/online/map00000342-e.bin diff --git a/system/ep3/maps/map00000348-e.bin b/system/ep3/maps/online/map00000348-e.bin similarity index 100% rename from system/ep3/maps/map00000348-e.bin rename to system/ep3/maps/online/map00000348-e.bin diff --git a/system/ep3/maps/map00000349-e.bin b/system/ep3/maps/online/map00000349-e.bin similarity index 100% rename from system/ep3/maps/map00000349-e.bin rename to system/ep3/maps/online/map00000349-e.bin diff --git a/system/ep3/maps/map00000352-e.bin b/system/ep3/maps/online/map00000352-e.bin similarity index 100% rename from system/ep3/maps/map00000352-e.bin rename to system/ep3/maps/online/map00000352-e.bin diff --git a/system/ep3/maps/map00000353-e.bin b/system/ep3/maps/online/map00000353-e.bin similarity index 100% rename from system/ep3/maps/map00000353-e.bin rename to system/ep3/maps/online/map00000353-e.bin diff --git a/system/ep3/maps/map00000354-e.bin b/system/ep3/maps/online/map00000354-e.bin similarity index 100% rename from system/ep3/maps/map00000354-e.bin rename to system/ep3/maps/online/map00000354-e.bin diff --git a/system/ep3/maps/map0000035C-e.bin b/system/ep3/maps/online/map0000035C-e.bin similarity index 100% rename from system/ep3/maps/map0000035C-e.bin rename to system/ep3/maps/online/map0000035C-e.bin diff --git a/system/ep3/maps/map0000035D-e.bin b/system/ep3/maps/online/map0000035D-e.bin similarity index 100% rename from system/ep3/maps/map0000035D-e.bin rename to system/ep3/maps/online/map0000035D-e.bin diff --git a/system/ep3/maps/map0000035E-e.bin b/system/ep3/maps/online/map0000035E-e.bin similarity index 100% rename from system/ep3/maps/map0000035E-e.bin rename to system/ep3/maps/online/map0000035E-e.bin diff --git a/system/ep3/maps/map0000035F-e.bin b/system/ep3/maps/online/map0000035F-e.bin similarity index 100% rename from system/ep3/maps/map0000035F-e.bin rename to system/ep3/maps/online/map0000035F-e.bin diff --git a/system/ep3/maps/map00000360-e.bin b/system/ep3/maps/online/map00000360-e.bin similarity index 100% rename from system/ep3/maps/map00000360-e.bin rename to system/ep3/maps/online/map00000360-e.bin diff --git a/system/ep3/maps/map00000370-e.bin b/system/ep3/maps/online/map00000370-e.bin similarity index 100% rename from system/ep3/maps/map00000370-e.bin rename to system/ep3/maps/online/map00000370-e.bin diff --git a/system/ep3/maps/map00000371-e.bin b/system/ep3/maps/online/map00000371-e.bin similarity index 100% rename from system/ep3/maps/map00000371-e.bin rename to system/ep3/maps/online/map00000371-e.bin diff --git a/system/ep3/maps/map00000372-e.bin b/system/ep3/maps/online/map00000372-e.bin similarity index 100% rename from system/ep3/maps/map00000372-e.bin rename to system/ep3/maps/online/map00000372-e.bin diff --git a/system/ep3/maps/map00000398-e.bin b/system/ep3/maps/online/map00000398-e.bin similarity index 100% rename from system/ep3/maps/map00000398-e.bin rename to system/ep3/maps/online/map00000398-e.bin diff --git a/system/ep3/maps/map00000399-e.bin b/system/ep3/maps/online/map00000399-e.bin similarity index 100% rename from system/ep3/maps/map00000399-e.bin rename to system/ep3/maps/online/map00000399-e.bin diff --git a/system/ep3/maps/map0000039A-e.bin b/system/ep3/maps/online/map0000039A-e.bin similarity index 100% rename from system/ep3/maps/map0000039A-e.bin rename to system/ep3/maps/online/map0000039A-e.bin diff --git a/system/ep3/maps/map0000039B-e.bin b/system/ep3/maps/online/map0000039B-e.bin similarity index 100% rename from system/ep3/maps/map0000039B-e.bin rename to system/ep3/maps/online/map0000039B-e.bin diff --git a/system/ep3/maps/map0000039C-e.bin b/system/ep3/maps/online/map0000039C-e.bin similarity index 100% rename from system/ep3/maps/map0000039C-e.bin rename to system/ep3/maps/online/map0000039C-e.bin diff --git a/system/ep3/maps/map000003B6-e.bin b/system/ep3/maps/online/map000003B6-e.bin similarity index 100% rename from system/ep3/maps/map000003B6-e.bin rename to system/ep3/maps/online/map000003B6-e.bin diff --git a/system/ep3/maps/map000003B7-e.bin b/system/ep3/maps/online/map000003B7-e.bin similarity index 100% rename from system/ep3/maps/map000003B7-e.bin rename to system/ep3/maps/online/map000003B7-e.bin diff --git a/system/ep3/maps/map000003B8-e.bin b/system/ep3/maps/online/map000003B8-e.bin similarity index 100% rename from system/ep3/maps/map000003B8-e.bin rename to system/ep3/maps/online/map000003B8-e.bin diff --git a/system/ep3/maps/map000003B9-e.bin b/system/ep3/maps/online/map000003B9-e.bin similarity index 100% rename from system/ep3/maps/map000003B9-e.bin rename to system/ep3/maps/online/map000003B9-e.bin diff --git a/system/ep3/maps/map000003BA-e.bin b/system/ep3/maps/online/map000003BA-e.bin similarity index 100% rename from system/ep3/maps/map000003BA-e.bin rename to system/ep3/maps/online/map000003BA-e.bin diff --git a/system/ep3/maps/map000003BB-e.bin b/system/ep3/maps/online/map000003BB-e.bin similarity index 100% rename from system/ep3/maps/map000003BB-e.bin rename to system/ep3/maps/online/map000003BB-e.bin diff --git a/system/ep3/maps/map000003BC-e.bin b/system/ep3/maps/online/map000003BC-e.bin similarity index 100% rename from system/ep3/maps/map000003BC-e.bin rename to system/ep3/maps/online/map000003BC-e.bin diff --git a/system/ep3/maps/map000003BD-e.bin b/system/ep3/maps/online/map000003BD-e.bin similarity index 100% rename from system/ep3/maps/map000003BD-e.bin rename to system/ep3/maps/online/map000003BD-e.bin diff --git a/system/ep3/maps/map000003BE-e.bin b/system/ep3/maps/online/map000003BE-e.bin similarity index 100% rename from system/ep3/maps/map000003BE-e.bin rename to system/ep3/maps/online/map000003BE-e.bin diff --git a/system/ep3/maps/map000003BF-e.bin b/system/ep3/maps/online/map000003BF-e.bin similarity index 100% rename from system/ep3/maps/map000003BF-e.bin rename to system/ep3/maps/online/map000003BF-e.bin diff --git a/system/ep3/maps/map000003C0-e.bin b/system/ep3/maps/online/map000003C0-e.bin similarity index 100% rename from system/ep3/maps/map000003C0-e.bin rename to system/ep3/maps/online/map000003C0-e.bin diff --git a/system/ep3/maps/map000003C1-e.bin b/system/ep3/maps/online/map000003C1-e.bin similarity index 100% rename from system/ep3/maps/map000003C1-e.bin rename to system/ep3/maps/online/map000003C1-e.bin diff --git a/system/ep3/maps/map000003C2-e.bin b/system/ep3/maps/online/map000003C2-e.bin similarity index 100% rename from system/ep3/maps/map000003C2-e.bin rename to system/ep3/maps/online/map000003C2-e.bin diff --git a/system/ep3/maps/map000003C3-e.bin b/system/ep3/maps/online/map000003C3-e.bin similarity index 100% rename from system/ep3/maps/map000003C3-e.bin rename to system/ep3/maps/online/map000003C3-e.bin diff --git a/system/ep3/maps/map000003C4-e.bin b/system/ep3/maps/online/map000003C4-e.bin similarity index 100% rename from system/ep3/maps/map000003C4-e.bin rename to system/ep3/maps/online/map000003C4-e.bin diff --git a/system/ep3/maps/map000003C5-e.bin b/system/ep3/maps/online/map000003C5-e.bin similarity index 100% rename from system/ep3/maps/map000003C5-e.bin rename to system/ep3/maps/online/map000003C5-e.bin diff --git a/system/ep3/maps/map000003C6-e.bin b/system/ep3/maps/online/map000003C6-e.bin similarity index 100% rename from system/ep3/maps/map000003C6-e.bin rename to system/ep3/maps/online/map000003C6-e.bin diff --git a/system/ep3/maps/map000003C7-e.bin b/system/ep3/maps/online/map000003C7-e.bin similarity index 100% rename from system/ep3/maps/map000003C7-e.bin rename to system/ep3/maps/online/map000003C7-e.bin diff --git a/system/ep3/maps/map000003C8-e.bin b/system/ep3/maps/online/map000003C8-e.bin similarity index 100% rename from system/ep3/maps/map000003C8-e.bin rename to system/ep3/maps/online/map000003C8-e.bin diff --git a/system/ep3/maps/map000003C9-e.bin b/system/ep3/maps/online/map000003C9-e.bin similarity index 100% rename from system/ep3/maps/map000003C9-e.bin rename to system/ep3/maps/online/map000003C9-e.bin diff --git a/system/ep3/maps/map000003CA-e.bin b/system/ep3/maps/online/map000003CA-e.bin similarity index 100% rename from system/ep3/maps/map000003CA-e.bin rename to system/ep3/maps/online/map000003CA-e.bin diff --git a/system/ep3/maps/map000003CB-e.bin b/system/ep3/maps/online/map000003CB-e.bin similarity index 100% rename from system/ep3/maps/map000003CB-e.bin rename to system/ep3/maps/online/map000003CB-e.bin